123456789101112131415161718192021222324252627282930313233343536 |
- namespace Lottomat.Application.Entity.WebApp
- {
-
-
-
-
-
-
-
- public class appUserInfoModel
- {
- #region 实体成员
-
-
-
- public string UserId { get; set; }
-
-
-
- public string Account { get; set; }
-
-
-
- public string RealName { get; set; }
-
-
-
- public string OrganizeId { get; set; }
-
-
-
- public string DepartmentId { get; set; }
- #endregion
- }
- }
|