zhengyiming
2025-03-25 fc85a3382990bcfb5f4d1a77f1525328343b3c8c
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs
@@ -246,6 +246,16 @@
}
public class UpdateLifePayOrderInput
{
    public Guid Id { get; set; }
    /// <summary>
    /// 实际到账金额
    /// </summary>
    public decimal ActualReceivedAmount { get; set; }
}
//public class ChannelsBaseInput : PageInput
//{
//    public string CheckChannelId { get; set; }
@@ -537,4 +547,29 @@
    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; }
}