123456789101112131415161718192021222324252627282930313233343536373839 |
- namespace GxPress.Entity.WorkProcessDto
- {
-
-
-
- public class RequestLimit
- {
-
-
-
- public int UserId { get; set; }
-
-
-
- public string UserName { get; set; }
-
-
-
- public int RoleId { get; set; }
-
-
-
- public string RoleName { get; set; }
-
-
-
- public int DepartmentId { get; set; }
-
-
-
- public string DepartmentName { get; set; }
- }
- }
|