zhengyuxuan
2025-03-28 8f25ac56ec951891640408bf825eeaff63a52d5e
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,40 @@
    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; }
}
public class SetPayTypeReturn
{
    public string Desc { get; set; }
    public string OrderNo { get; set; }
    public decimal PayAmount { get; set; }
    public LifePayTypeEnum LifePayType { get; set; }
}