lingling
2025-03-19 567911f4b389e0c6e548855ec10ff827a3095f33
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs
@@ -391,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; }
}