zhengyuxuan
2025-03-24 e896cbc0f5d5483d4661918556f45b7b9a6c31c2
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs
@@ -538,3 +538,28 @@
    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; }
}