| | |
| | | |
| | | } |
| | | |
| | | public class UpdateLifePayOrderInput |
| | | { |
| | | public Guid Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 实际到账金额 |
| | | /// </summary> |
| | | public decimal ActualReceivedAmount { get; set; } |
| | | } |
| | | |
| | | //public class ChannelsBaseInput : PageInput |
| | | //{ |
| | | // public string CheckChannelId { get; set; } |
| | |
| | | public string Phone { get; set; } |
| | | |
| | | public string Remark { get; set; } |
| | | } |
| | | |
| | | public class OrderPriceReturn |
| | | { |
| | | /// <summary> |
| | | /// 平台扣款金额 |
| | | /// </summary> |
| | | public decimal PlatformPrice { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 手续费 |
| | | /// </summary> |
| | | public decimal PremiumPrice { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 渠道佣金 |
| | | /// </summary> |
| | | public decimal ChannlesRakePrice { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 利润 |
| | | /// </summary> |
| | | |
| | | public decimal Profit { get; set; } |
| | | |
| | | } |