| | |
| | | && (string.IsNullOrWhiteSpace(searchEntity.PaymentUnit) || a.PaymentUnit.Contains(searchEntity.PaymentUnit.Trim())) |
| | | && (string.IsNullOrWhiteSpace(searchEntity.CreaterName) || y.UserName.Contains(searchEntity.CreaterName.Trim())) |
| | | && (string.IsNullOrWhiteSpace(searchEntity.RecordTypeId) || a.RecordTypeId == searchEntity.RecordTypeId.Trim()) |
| | | |
| | | && (string.IsNullOrWhiteSpace(searchEntity.RecordTypeId) || a.RecordTypeId == searchEntity.RecordTypeId.Trim()) |
| | | |
| | | select new FiAccountRecordDTO |
| | | { |
| | | Id = a.Id, |
| | |
| | | QiyongStatus = a.QiyongStatus, |
| | | RecStatus = a.RecStatus, |
| | | Balance = z.Balance??0, |
| | | AccountMoney = a.AccountMoney??0, |
| | | |
| | | }).OrderByDescending(x => x.Modifytime).ToList(); |
| | | |