12345678910111213141516171819202122232425262728293031323334353637383940 |
- namespace Dto
- {
- public class SysUserDto
- {
- public long userId { get; set; }
- public string? username { get; set; }
- public string? nickname { get; set; }
- public string? name { get; set; }
- public string? email { get; set; }
- public string? remark { get; set; }
- public string? phone { get; set; }
- public string? password { get; set; }
-
-
-
- public int status { get; set; }
-
-
-
- public long deptId { get; set; }
-
-
-
- public long[] role { get; set; }
-
-
-
- public int[] post { get; set; }
- }
- public class SysUserQueryDto
- {
- public string? username { get; set; }
- public string? nickname { get; set; }
- public string? name { get; set; }
- public string? phone { get; set; }
- }
- }
|