| | |
| | | [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; } |
| | | } |