sso

org_models.go 4.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package models
  2. type Org struct {
  3. Id int `gorm:"PRIMARY_KEY;AUTO_INCREMENT" json:"id"` // 机构 ID
  4. Creator int `json:"creator"` // 创建者,即管理员用户的 id
  5. OrgName string `gorm:"column:org_name" json:"org_name"`
  6. OrgShortName string `gorm:"column:org_short_name" json:"org_short_name"` // 简称
  7. OrgLogo string `gorm:"column:org_logo" json:"org_logo"`
  8. OrgIntroduction string `gorm:"column:org_introduction" json:"org_introduction"`
  9. Province int `json:"province"` // 省,代号,下面的市、区也一样
  10. City int `json:"city"`
  11. District int `json:"district"`
  12. Address string `json:"address"` // 详细地址
  13. Illness string `json:"illness"` // 服务病种 多个并用“,”隔开
  14. Status int8 `json:"status"` // 状态 0.无效 1.有效 2.禁用
  15. CreateTime int64 `gorm:"column:ctime" json:"ctime"` // 创建时间
  16. ModifyTime int64 `gorm:"column:mtime" json:"mtime"` // 修改时间
  17. ContactName string `gorm:"column:contact_name" json:"contact_name"`
  18. OrgType int64 `gorm:"column:org_type" json:"org_type"`
  19. Evaluate float64 `gorm:"column:evaluate" json:"evaluate"`
  20. Comments int64 `gorm:"column:comments" json:"comments"`
  21. OperatingState int64 `gorm:"column:operating_state" json:"operating_state"`
  22. Claim int64 `gorm:"column:claim" json:"claim"`
  23. Telephone string `gorm:"column:telephone" json:"telephone"`
  24. BusinessTime string `gorm:"column:business_time" json:"business_time"`
  25. BusinessWeek string `gorm:"column:business_week" json:"business_week"`
  26. Gallery string `gorm:"column:gallery" json:"gallery"`
  27. OrgGallery []*OrgGallery `gorm:"ForeignKey:OrgId" json:"org_gallery"`
  28. }
  29. func (Org) TableName() string {
  30. return "sgj_user_org"
  31. }
  32. type Illness struct {
  33. Id int `gorm:"PRIMARY_KEY;AUTO_INCREMENT"`
  34. IllnessName string `gorm:"colunm:illness_name"`
  35. Status int8 // 状态 0.无效 1.有效 2.禁用
  36. CreateTime int64 `gorm:"column:created_time"` // 创建时间
  37. ModifyTime int64 `gorm:"column:updated_time"` // 修改时间
  38. }
  39. func (Illness) TableName() string {
  40. return "sgj_user_illness"
  41. }
  42. type OrgType struct {
  43. ID int64 `gorm:"column:id" json:"id" form:"id"`
  44. Name string `gorm:"column:name" json:"name" form:"name"`
  45. ShortName string `gorm:"column:short_name" json:"short_name" form:"short_name"`
  46. Pid int64 `gorm:"column:pid" json:"-"`
  47. Status int64 `gorm:"column:status" json:"-"`
  48. CreatedTime int64 `gorm:"column:created_time" json:"-"`
  49. UpdatedTime int64 `gorm:"column:updated_time" json:"-"`
  50. }
  51. func (OrgType) TableName() string {
  52. return "sgj_user_org_type"
  53. }
  54. type ServeSubscibe struct {
  55. ID int64 `gorm:"column:id" json:"id"`
  56. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  57. PeriodStart int64 `gorm:"column:period_start" json:"period_start"`
  58. PeriodEnd int64 `gorm:"column:period_end" json:"period_end"`
  59. Status int64 `gorm:"column:status" json:"status"`
  60. CreatedTime int64 `gorm:"column:created_time" json:"-"`
  61. UpdatedTime int64 `gorm:"column:updated_time" json:"-"`
  62. State int64 `gorm:"column:state" json:"state" form:"statstateus"`
  63. }
  64. func (ServeSubscibe) TableName() string {
  65. return "sgj_serve_subscibe"
  66. }
  67. type OrgGallery struct {
  68. ID int64 `gorm:"column:id" json:"id" form:"id"`
  69. Url string `gorm:"column:url" json:"url" form:"url"`
  70. Type int64 `gorm:"column:type" json:"type" form:"type"`
  71. OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
  72. UserId int64 `gorm:"column:user_id" json:"user_id" form:"user_id"`
  73. Status int64 `gorm:"column:status" json:"status" form:"status"`
  74. Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
  75. Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
  76. }
  77. func (OrgGallery) TableName() string {
  78. return "sgj_user_org_gallery"
  79. }