zhengyuxuan
2025-03-19 dcc11e86bb7d063af1e6b7e9eccff3e292cbf6cb
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs
@@ -217,7 +217,7 @@
    /// <summary>
    /// 下单渠道
    /// </summary>
    public Guid? ChannelId { get; set; }
    public string? ChannelId { get; set; }
}
@@ -315,6 +315,8 @@
    public decimal ChannlesRate { get; set; }
    public decimal ChannlesRakeRate { get; set; }
    public LifePaySwitchTypeEnum SwitchType { get; set; }
    public LifePayChannelsStatsEnum Status { get; set; }
@@ -389,4 +391,28 @@
    /// </summary>
    [StringLength(30, ErrorMessage = "备注信息仅支持填写30个字符。")]
    public string Remark { get; set; } = string.Empty;
}
public class QueryUserPageInput : ChannelsBaseInput
{
    /// <summary>
    /// 手机号/用户名
    /// </summary>
    public string? QueryCondition { get; set; }
    /// <summary>
    /// 注册时间
    /// </summary>
    public DateTime? CreationTime { get; set; }
}
public class Model_UserAccountExtraProperties
{
    public string? Name { get; set; }
    public string IspCode { get; set; }
    public string Phone { get; set; }
    public string Remark { get; set; }
}