1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- namespace Admin.Core.Service.Admin.User.Output
- {
- public class UserListOutput
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string UserName { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string NickName { get; set; }
-
-
-
- public int Status { get; set; }
-
-
-
- public string[] RoleNames { get; set; }
-
-
-
- public string Remark { get; set; }
-
-
-
- public DateTime? CreatedTime { get; set; }
- }
- }
|