zhengyuxuan
2025-03-25 5a6d5ce0fd95b0e02cbf6309941d43bdd51ec3bd
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs
@@ -537,4 +537,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; }
}