zhengyuxuan
2025-03-19 82831a86d529817e51f5b6e3cec636d21cef3c9b
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs
@@ -392,3 +392,27 @@
    [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; }
}