| | |
| | | /// <summary> |
| | | /// 用户手机号 |
| | | /// </summary> |
| | | public string PhoneNumber { get; set; } |
| | | public string? PhoneNumber { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 生活缴费支付类型 |
| | |
| | | /// <summary> |
| | | /// 渠道名称 |
| | | /// </summary> |
| | | public string ChannelName { get; set; } |
| | | public string? ChannelName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 订单类型 |
| | |
| | | /// <summary> |
| | | /// 退款订单号 |
| | | /// </summary> |
| | | public string RefundOrderNo { get; set; } |
| | | public string? RefundOrderNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 充值金额 |
| | |
| | | /// 平台退款状态 |
| | | /// </summary> |
| | | public LifePayRefundStatusEnum? LifePayRefundStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 实际到账金额 |
| | | /// </summary> |
| | | public decimal ActualReceivedAmount { get; set; } |
| | | |
| | | public LifePayStatusEnum? ActualReceivedStatus { get; set; } |
| | | } |
| | | |
| | | public class LifePayOrderListTemplate |
| | |
| | | { |
| | | |
| | | [Name("序号")] |
| | | public int SerialNumber { get; set; } |
| | | public int? SerialNumber { get; set; } |
| | | |
| | | [Name("手机号")] |
| | | public string PhoneNumber { get; set; } |
| | | public string? PhoneNumber { get; set; } |
| | | |
| | | public LifePayTypeEnum? LifePayType { get; set; } |
| | | |
| | | public LifePayOrderTypeEnum LifePayOrderType { get; set; } |
| | | public LifePayOrderTypeEnum? LifePayOrderType { get; set; } |
| | | |
| | | [Name("充值类型")] |
| | | public string LifePayOrderTypeStr { get; set; } |
| | | public string? LifePayOrderTypeStr { get; set; } |
| | | |
| | | [Name("充值渠道")] |
| | | public string ChannelName { get; set; } |
| | | public string? ChannelName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 退款申请时间 |
| | | /// </summary> |
| | | [Name("申请退款时间")] |
| | | public string RefundApplyTimeStr { get; set; } |
| | | public string? RefundApplyTimeStr { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 下单时间 |
| | |
| | | public DateTime CreationTime { get; set; } |
| | | |
| | | [Name("下单时间")] |
| | | public string CreationTimeStr { get; set; } |
| | | public string? CreationTimeStr { get; set; } |
| | | |
| | | [Name("退款订单号")] |
| | | public string RefundOrderNo { get; set; } |
| | | public string? RefundOrderNo { get; set; } |
| | | |
| | | |
| | | [Name("充值金额")] |
| | | public string RechargeAmountStr { get; set; } |
| | | public string? RechargeAmountStr { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | |
| | | /// 实际到账金额 |
| | | /// </summary> |
| | | [Name("实际到账金额")] |
| | | public string ActualReceivedAmount { get; set; } |
| | | public string? ActualReceivedAmount { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 实付金额 |
| | |
| | | public decimal PayAmount { get; set; } |
| | | |
| | | [Name("实付金额")] |
| | | public string PayAmountStr { get; set; } |
| | | public string? PayAmountStr { get; set; } |
| | | |
| | | [Name("退款渠道")] |
| | | public string LifePayTypeStr { get; set; } |
| | |
| | | public decimal? RefundPrice { get; set; } |
| | | |
| | | |
| | | public ACOOLYStatusEnum ACOOLYStatus { get; set; } |
| | | public ACOOLYStatusEnum? ACOOLYStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 供应商订单状态 |
| | | /// </summary> |
| | | [Name("供应商订单状态")] |
| | | public string ACOOLYStatusStr { get; set; } |
| | | public string? ACOOLYStatusStr { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | |
| | | /// <summary> |
| | | /// 平台退款状态 |
| | | /// </summary> |
| | | public LifePayRefundStatusEnum? LifePayRefundStatus { get; set; } |
| | | |
| | | [Name("平台退款状态")] |
| | | public string LifePayRefundStatus { get; set; } |
| | | public string? LifePayRefundStatusStr { get; set; } |
| | | |
| | | [Name("完成时间")] |
| | | public string FinishTimeStr { get; set; } |
| | | public string? FinishTimeStr { get; set; } |
| | | |
| | | |
| | | } |