| | |
| | | using Newtonsoft.Json; |
| | | using System; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Collections.Generic; |
| | | using static LifePayment.Domain.Shared.LifePaymentConstant; |
| | | |
| | | namespace LifePayment.Application.Contracts; |
| | |
| | | public decimal Profit { get; set; } |
| | | |
| | | } |
| | | public class LifePayConsumptionPageInput : ChannelsBaseInput |
| | | { |
| | | /// <summary> |
| | | /// 查询条件 |
| | | /// </summary> |
| | | public string? KeyWord { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 资金流向 |
| | | /// </summary> |
| | | public ConsumptionFlowEnum? Flow { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 记账开始时间 |
| | | /// </summary> |
| | | public DateTime? TimeBegin { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 记账结束时间 |
| | | /// </summary> |
| | | public DateTime? TimeEnd { get; set; } |
| | | } |
| | | public class LifePayRechargeReceiptsPageInput : ChannelsBaseInput |
| | | { |
| | | /// <summary> |
| | |
| | | |
| | | public LifePayTypeEnum LifePayType { get; set; } |
| | | } |
| | | |
| | | public class AddLifePayExpensesReceiptsInput |
| | | { |
| | | /// <summary> |
| | | /// 退款订单号 |
| | | /// </summary> |
| | | public string OutRefundNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 平台订单号 |
| | | /// </summary> |
| | |
| | | public decimal Amount { get; set; } |
| | | |
| | | public string ExpensesReceiptsOrder { get; set; } |
| | | } |
| | | public class LifePayChannlesRakePageInput : ChannelsBaseInput |
| | | { |
| | | |
| | | /// <summary> |
| | | /// 查询条件 |
| | | /// </summary> |
| | | public string? KeyWord { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 渠道号 |
| | | /// </summary> |
| | | public string? ChannelId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 起始下单时间 |
| | | /// </summary> |
| | | public DateTime? CreationTimeBegin { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 结束下单时间 |
| | | /// </summary> |
| | | public DateTime? CreationTimeEnd { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 起始结算时间 |
| | | /// </summary> |
| | | public DateTime? FinishTimeBegin { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 终止结算时间 |
| | | /// </summary> |
| | | public DateTime? FinishTimeEnd { get; set; } |
| | | |
| | | } |
| | | |
| | | public class TopStatisticsInput |
| | | { |
| | | public List<string>? ChannleList { get; set; } |
| | | } |