zhengyiming
2025-03-31 d5ec56c6dd3c84b9a889af585385f3ecfee72074
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs
@@ -736,4 +736,38 @@
    public decimal Amount { get; set; }
    public string ExpensesReceiptsOrder { get; set; }
}
}
public class LifePayChannlesRakePageInput : ChannelsBaseInput
{
    /// <summary>
    /// 查询条件
    /// </summary>
    public string? KeyWord { get; set; }
    /// <summary>
    /// 渠道号
    /// </summary>
    public string? ChannelId { get; set; }
    /// <summary>
    /// 起始下单时间
    /// </summary>
    public DateTime? CreationTimeBegin { get; set; }
    /// <summary>
    /// 结束下单时间
    /// </summary>
    public DateTime? CreationTimeEnd { get; set; }
    /// <summary>
    /// 起始结算时间
    /// </summary>
    public DateTime? FinishTimeBegin { get; set; }
    /// <summary>
    /// 终止结算时间
    /// </summary>
    public DateTime? FinishTimeEnd { get; set; }
}