| | |
| | | { |
| | | Id = x.Id, |
| | | OrderNo = x.OrderNo, |
| | | RechargeAmount = x.RechargeAmount, |
| | | Remark = x.Remark, |
| | | Voucher = x.Voucher.GetOssPath(), |
| | | //RechargeAmount = x.RechargeAmount, |
| | | //Remark = x.Remark, |
| | | //Voucher = x.Voucher.GetOssPath(), |
| | | CreationTime = x.CreationTime, |
| | | }) |
| | | .GetPageResult(input.PageModel); |
| | | |
| | | var total = await _lifePayRechargeReceiptsRepository.Where(x => x.IsDeleted == false).SumAsync(x => x.RechargeAmount); |
| | | LifePayRechargeReceiptsPageOutput<LifePayRechargeReceiptsListOutput> result = new LifePayRechargeReceiptsPageOutput<LifePayRechargeReceiptsListOutput>(); |
| | | result.Data = list.Data; |
| | | LifePayExpensesReceiptsPageOutput<LifePayExpensesReceiptsListOutput> result = new LifePayExpensesReceiptsPageOutput<LifePayExpensesReceiptsListOutput>(); |
| | | //result.Data = list.Data; |
| | | result.TotalRechargeAmount = total; |
| | | return result; |
| | | } |