123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System;
- namespace GxPress.Request.Admin
- {
-
-
-
- public class AdminSignUpRequest
- {
-
-
-
- public string Account { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string Password { get; set; }
-
-
-
- public string Phone { get; set; }
-
-
-
- public string Email { get; set; }
-
-
-
- public string Sex { get; set; }
-
-
-
-
- public int RoleId { get; set; }
-
-
-
-
- public int Ip { get; set; }
-
-
-
-
- public DateTime LoginTime { get; set; }
- }
- }
|