using Attribute; using Model; using Model.Base; using Repository; using Service; using Microsoft.AspNetCore.Mvc; using Vo.Admin; namespace Services { /// /// 好哒终端解绑记录Service业务层处理 /// [AppService(ServiceType = typeof(IHdUnBindRecordService), ServiceLifetime = LifeTime.Transient)] public class HdUnBindRecordService : BaseService, IHdUnBindRecordService { /// /// 好哒终端解绑记录-列表 /// /// 参数请求体 /// 分页参数 /// 列表 public PagedInfo getHdUnBindRecordList([FromQuery] PagerInfo page, [FromQuery] HdUnBindRecord param) { //拼装查询条件 var predicate = Expressionable.Create(); predicate = predicate.AndIF(!string.IsNullOrEmpty(param.snNo), m => m.snNo.Contains(param.snNo)); predicate = predicate.AndIF(!string.IsNullOrEmpty(param.mchtNo), m => m.mchtNo.Contains(param.mchtNo)); predicate = predicate.AndIF(!string.IsNullOrEmpty(param.oprTime), m => m.oprTime.Contains(param.oprTime)); predicate = predicate.AndIF(!string.IsNullOrEmpty(param.deviceType), m => m.deviceType.Contains(param.deviceType)); var response = Queryable() .Where(predicate.ToExpression()) .OrderByDescending(m => m.id) .ToPage(page); return response; } } }