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; }
@@ -303,15 +313,7 @@
    /// </summary>
    public DateTime? EndFinishTime { get; set; }
    /// <summary>
    /// 开始退款时间
    /// </summary>
    public DateTime? BeginRefundTime { get; set; }
    /// <summary>
    /// 结束退款时间
    /// </summary>
    public DateTime? EndRefundTime { get; set; }
    /// <summary>
    /// 用户Id
@@ -355,6 +357,16 @@
    /// 结束完成时间
    /// </summary>
    public DateTime? EndFinishTime { get; set; }
    /// <summary>
    /// 开始退款时间
    /// </summary>
    public DateTime? BeginRefundTime { get; set; }
    /// <summary>
    /// 结束退款时间
    /// </summary>
    public DateTime? EndRefundTime { get; set; }
    /// <summary>
    /// 支付状态
@@ -535,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; }
}