role_models.go 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. package models
  2. type Role struct {
  3. Id int64 `gorm:"PRIMARY_KEY;AUTO_INCREMENT" json:"id"`
  4. RoleName string `gorm:"column:role_name" json:"name"`
  5. RoleIntro string `gorm:"column:role_introduction" json:"intro"`
  6. Creator int64 `json:"-"`
  7. OrgId int64 `gorm:"column:org_id" json:"-"`
  8. AppId int64 `gorm:"column:app_id" json:"-"`
  9. IsSuperAdmin bool `gorm:"column:is_super_admin" json:"is_super_admin"`
  10. Status int8 `json:"status"` // 状态 0.无效 1.有效 2.禁用
  11. CreateTime int64 `gorm:"column:ctime" json:"-"` // 创建时间
  12. ModifyTime int64 `gorm:"column:mtime" json:"-"` // 修改时间
  13. StaffNumber int64 `gorm:"-" json:"staff_number"`
  14. Number int64 `gorm:"number" json:"number"`
  15. IsSystem int64 `gorm:"column:is_system" json:"is_system" form:"is_system"`
  16. }
  17. func (Role) TableName() string {
  18. return "sgj_user_role"
  19. }
  20. type App_Roles struct {
  21. Id int64 `gorm:"PRIMARY_KEY;AUTO_INCREMENT" json:"id"`
  22. AdminUserId int64 `gorm:"column:admin_user_id" json:"admin_user_id"`
  23. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  24. AppId int64 `gorm:"column:app_id" json:"app_id"`
  25. RoleId int64 `gorm:"column:role_id" json:"role_id"`
  26. Avatar string `json:"avatar" json:"avatar"`
  27. UserName string `gorm:"column:user_name" json:"user_name"` // 用户名称
  28. Intro string `json:"intro"` // 简介
  29. UserType int8 `gorm:"column:user_type" json:"user_type"` // 用户类型(1.管理员;2.医生;3.护士;4.运营)
  30. UserTitle int8 `gorm:"column:user_title" json:"user_title"` // 用户职称(1.医士;2.医师;3.住院医师;4.主治医师;5.副主任医师;6.主任医师;7.护士;8.护师;9.主管护师;10.副主任护师;11.主任护师;12.运营专员;13.运营主管)
  31. Status int8 `json:"status"` // 状态 0.无效 1.有效
  32. CreateTime int64 `gorm:"column:ctime" json:"ctime"` // 创建时间
  33. ModifyTime int64 `gorm:"column:mtime" json:"mtime"` // 修改时间
  34. Url string `gorm:"column:url" json:"url" form:"url"`
  35. }
  36. type App_Role struct {
  37. Id int64 `gorm:"PRIMARY_KEY;AUTO_INCREMENT" json:"id"`
  38. AdminUserId int64 `gorm:"column:admin_user_id" json:"admin_user_id"`
  39. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  40. AppId int64 `gorm:"column:app_id" json:"app_id"`
  41. RoleId int64 `gorm:"column:role_id" json:"role_id"`
  42. Avatar string `json:"avatar" json:"avatar"`
  43. UserName string `gorm:"column:user_name" json:"user_name"` // 用户名称
  44. Intro string `json:"intro"` // 简介
  45. UserType int8 `gorm:"column:user_type" json:"user_type"` // 用户类型(1.管理员;2.医生;3.护士;4.运营)
  46. UserTitle int8 `gorm:"column:user_title" json:"user_title"` // 用户职称(1.医士;2.医师;3.住院医师;4.主治医师;5.副主任医师;6.主任医师;7.护士;8.护师;9.主管护师;10.副主任护师;11.主任护师;12.运营专员;13.运营主管)
  47. Status int8 `json:"status"` // 状态 0.无效 1.有效
  48. CreateTime int64 `gorm:"column:ctime" json:"ctime"` // 创建时间
  49. ModifyTime int64 `gorm:"column:mtime" json:"mtime"` // 修改时间UserTitleName string `gorm:"column:user_title_name" json:"user_title_name" form:"user_title_name"`
  50. UserTitleName string `gorm:"column:user_title_name" json:"user_title_name" form:"user_title_name"`
  51. RoleIds string `gorm:"column:role_ids" json:"role_ids" form:"role_ids"`
  52. AdminUser AdminUser `gorm:"ForeignKey:ID;AssociationForeignKey:AdminUserId" json:"admin"`
  53. //AdminUser AdminUser `gorm:"ForeignKey:ID;AssociationForeignKey:AdminUserId" json:"admin"`
  54. IsSubSuperAdmin bool `gorm:"-" json:"is_sub_super_admin" form:"is_sub_super_admin"`
  55. Message string `gorm:"column:message" json:"message" form:"message"`
  56. Sex int64 `gorm:"column:sex" json:"sex" form:"sex"`
  57. Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
  58. }
  59. func (App_Role) TableName() string {
  60. return "sgj_user_admin_role"
  61. }
  62. var UserType = map[int]string{
  63. 1: "管理员",
  64. 2: "医生",
  65. 3: "护士",
  66. 4: "运营",
  67. }
  68. var UserTitle = map[int]string{
  69. 1: "医士",
  70. 2: "医师",
  71. 3: "住院医师",
  72. 4: "主治医师",
  73. 5: "副主任医师",
  74. 6: "主任医师",
  75. 7: "护士",
  76. 8: "护师",
  77. 9: "主管护师",
  78. 10: "副主任护师",
  79. 11: "主任护师",
  80. 12: "运营专员",
  81. 13: "运营主管",
  82. }
  83. type SgjUserRoleFuncPurview struct {
  84. ID int64 `gorm:"column:id" json:"id" form:"id"`
  85. OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
  86. AppId int64 `gorm:"column:app_id" json:"app_id" form:"app_id"`
  87. RoleId int64 `gorm:"column:role_id" json:"role_id" form:"role_id"`
  88. PurviewIds string `gorm:"column:purview_ids" json:"purview_ids" form:"purview_ids"`
  89. Status int64 `gorm:"column:status" json:"status" form:"status"`
  90. Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
  91. Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
  92. }
  93. func (SgjUserRoleFuncPurview) TableName() string {
  94. return "sgj_user_role_func_purview"
  95. }
  96. type Roles struct {
  97. Id int64 `gorm:"PRIMARY_KEY;AUTO_INCREMENT" json:"id"`
  98. RoleName string `gorm:"column:role_name" json:"role_name"`
  99. RoleIntro string `gorm:"column:role_introduction" json:"intro"`
  100. Creator int64 `json:"-"`
  101. OrgId int64 `gorm:"column:org_id" json:"-"`
  102. AppId int64 `gorm:"column:app_id" json:"-"`
  103. IsSuperAdmin bool `gorm:"column:is_super_admin" json:"is_super_admin"`
  104. Status int8 `json:"status"` // 状态 0.无效 1.有效 2.禁用
  105. CreateTime int64 `gorm:"column:ctime" json:"-"` // 创建时间
  106. ModifyTime int64 `gorm:"column:mtime" json:"-"` // 修改时间
  107. StaffNumber int64 `gorm:"-" json:"staff_number"`
  108. Number int64 `gorm:"column:number" json:"number" form:"number"`
  109. IsSystem int64 `gorm:"column:is_system" json:"is_system" form:"is_system"`
  110. }
  111. func (Roles) TableName() string {
  112. return "sgj_user_role"
  113. }