zhengyuxuan
2025-03-25 791b570da68ecf30a4bfa745c159e36c2d3c91f7
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; }
}