data_models.go 9.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. package models
  2. type Dataconfig struct {
  3. ID int64 `gorm:"column:id" json:"id" form:"id"`
  4. ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
  5. Module string `gorm:"column:module" json:"module" form:"module"`
  6. OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
  7. Name string `gorm:"column:name" json:"name" form:"name"`
  8. FieldName string `gorm:"column:field_name" json:"field_name" form:"field_name"`
  9. Value int `gorm:"column:value" json:"value" form:"value"`
  10. CreatedTime string `gorm:"column:create_time" json:"create_time" form:"create_time"`
  11. UpdatedTime string `gorm:"column:update_time" json:"update_time" form:"update_time"`
  12. CreateUserId int64 `gorm:"column:create_user_id" json:"create_user_id" form:"create_user_id"`
  13. Status int64 `gorm:"column:status" json:"status" form:"status"`
  14. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  15. DeleteIdSystem int64 `gorm:"column:delete_id_system" json:"delete_id_system" form:"delete_id_system"`
  16. Title string `gorm:"column:title" json:"title" form:"title"`
  17. Content string `gorm:"column:content" json:"content" form:"content"`
  18. Order int64 `gorm:"column:orders" json:"orders" form:"orders"`
  19. Code string `gorm:"column:code" json:"code" form:"code"`
  20. }
  21. func (Dataconfig) TableName() string {
  22. return "xt_data_config"
  23. }
  24. type DictionaryDataconfig struct {
  25. ID int64 `gorm:"column:id" json:"id" form:"id"`
  26. ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
  27. Module string `gorm:"column:module" json:"module" form:"module"`
  28. OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
  29. Name string `gorm:"column:name" json:"name" form:"name"`
  30. FieldName string `gorm:"column:field_name" json:"field_name" form:"field_name"`
  31. Value int `gorm:"column:value" json:"value" form:"value"`
  32. CreatedTime string `gorm:"column:create_time" json:"create_time" form:"create_time"`
  33. UpdatedTime string `gorm:"column:update_time" json:"update_time" form:"update_time"`
  34. CreateUserId int64 `gorm:"column:create_user_id" json:"create_user_id" form:"create_user_id"`
  35. Status int64 `gorm:"column:status" json:"status" form:"status"`
  36. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  37. DeleteIdSystem int64 `gorm:"column:delete_id_system" json:"delete_id_system" form:"delete_id_system"`
  38. Title string `gorm:"column:title" json:"title" form:"title"`
  39. Content string `gorm:"column:content" json:"content" form:"content"`
  40. Order int64 `gorm:"column:orders" json:"orders" form:"orders"`
  41. }
  42. func (DictionaryDataconfig) TableName() string {
  43. return "xt_drug_data_config"
  44. }
  45. type DictionaryConfigViewModel struct {
  46. ID int64 `gorm:"column:id" json:"id" form:"id"`
  47. ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
  48. Module string `gorm:"column:module" json:"module" form:"module"`
  49. OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
  50. Name string `gorm:"column:name" json:"name" form:"name"`
  51. FieldName string `gorm:"column:field_name" json:"field_name" form:"field_name"`
  52. Value int `gorm:"column:value" json:"value" form:"value"`
  53. CreatedTime string `gorm:"column:create_time" json:"create_time" form:"create_time"`
  54. UpdatedTime string `gorm:"column:update_time" json:"update_time" form:"update_time"`
  55. CreateUserId int64 `gorm:"column:create_user_id" json:"create_user_id" form:"create_user_id"`
  56. Status int64 `gorm:"column:status" json:"status" form:"status"`
  57. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  58. Title string `gorm:"column:title" json:"title" form:"title"`
  59. Content string `gorm:"column:content" json:"content" form:"content"`
  60. Order int64 `gorm:"column:orders" json:"orders" form:"orders"`
  61. Childs []*DictionaryDataconfig `json:"childs" `
  62. }
  63. func (DictionaryConfigViewModel) TableName() string {
  64. return "xt_drug_data_config"
  65. }
  66. type ConfigViewModel struct {
  67. ID int64 `gorm:"column:id" json:"id" form:"id"`
  68. ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
  69. Module string `gorm:"column:module" json:"module" form:"module"`
  70. OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
  71. Name string `gorm:"column:name" json:"name" form:"name"`
  72. FieldName string `gorm:"column:field_name" json:"field_name" form:"field_name"`
  73. Value int `gorm:"column:value" json:"value" form:"value"`
  74. CreatedTime string `gorm:"column:create_time" json:"create_time" form:"create_time"`
  75. UpdatedTime string `gorm:"column:update_time" json:"update_time" form:"update_time"`
  76. CreateUserId int64 `gorm:"column:create_user_id" json:"create_user_id" form:"create_user_id"`
  77. Status int64 `gorm:"column:status" json:"status" form:"status"`
  78. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  79. Title string `gorm:"column:title" json:"title" form:"title"`
  80. Content string `gorm:"column:content" json:"content" form:"content"`
  81. Order int64 `gorm:"column:orders" json:"orders" form:"orders"`
  82. Childs []*Dataconfig `json:"childs" `
  83. }
  84. func (ConfigViewModel) TableName() string {
  85. return "xt_data_config"
  86. }
  87. type FiledConfig struct {
  88. ID int64 `gorm:"column:id" json:"id"`
  89. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  90. Module int64 `gorm:"column:module" json:"module"`
  91. FiledName string `gorm:"column:filed_name" json:"filed_name"`
  92. FiledNameCn string `gorm:"column:filed_name_cn" json:"filed_name_cn"`
  93. IsShow int64 `gorm:"column:is_show" json:"is_show"`
  94. CreateTime int64 `gorm:"column:create_time" json:"create_time"`
  95. UpdateTime int64 `gorm:"column:update_time" json:"update_time"`
  96. SysModule int64 `gorm:"column:sys_module" json:"sys_module" form:"sys_module"`
  97. }
  98. func (FiledConfig) TableName() string {
  99. return "xt_filed_config"
  100. }
  101. type OutpatientServiceSick struct {
  102. ID int64 `gorm:"column:id" json:"id" form:"id"`
  103. ClassName string `gorm:"column:class_name" json:"class_name" form:"class_name"`
  104. Pinyin string `gorm:"column:pinyin" json:"pinyin" form:"pinyin"`
  105. Wubi string `gorm:"column:wubi" json:"wubi" form:"wubi"`
  106. ContentCode string `gorm:"column:content_code" json:"content_code" form:"content_code"`
  107. CountryCode string `gorm:"column:country_code" json:"country_code" form:"country_code"`
  108. CountryContentName string `gorm:"column:country_content_name" json:"country_content_name" form:"country_content_name"`
  109. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  110. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  111. Status int64 `gorm:"column:status" json:"status" form:"status"`
  112. Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
  113. Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
  114. }
  115. func (OutpatientServiceSick) TableName() string {
  116. return "outpatient_service_sick"
  117. }
  118. type XtHisAddtionConfig struct {
  119. ID int64 `gorm:"column:id" json:"id" form:"id"`
  120. Code string `gorm:"column:code" json:"code" form:"code"`
  121. Name string `gorm:"column:name" json:"name" form:"name"`
  122. Price float64 `gorm:"column:price" json:"price" form:"price"`
  123. Status int64 `gorm:"column:status" json:"status" form:"status"`
  124. Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
  125. Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
  126. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  127. }
  128. func (XtHisAddtionConfig) TableName() string {
  129. return "xt_his_addtion_config"
  130. }
  131. type DictDataconfig struct {
  132. ID int64 `gorm:"column:id" json:"id" form:"id"`
  133. ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
  134. Module string `gorm:"column:module" json:"module" form:"module"`
  135. OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
  136. Name string `gorm:"column:name" json:"name" form:"name"`
  137. FieldName string `gorm:"column:field_name" json:"field_name" form:"field_name"`
  138. Value int `gorm:"column:value" json:"value" form:"value"`
  139. CreatedTime string `gorm:"column:create_time" json:"create_time" form:"create_time"`
  140. UpdatedTime string `gorm:"column:update_time" json:"update_time" form:"update_time"`
  141. CreateUserId int64 `gorm:"column:create_user_id" json:"create_user_id" form:"create_user_id"`
  142. Status int64 `gorm:"column:status" json:"status" form:"status"`
  143. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  144. DeleteIdSystem int64 `gorm:"column:delete_id_system" json:"delete_id_system" form:"delete_id_system"`
  145. Title string `gorm:"column:title" json:"title" form:"title"`
  146. Content string `gorm:"column:content" json:"content" form:"content"`
  147. Order int64 `gorm:"column:orders" json:"orders" form:"orders"`
  148. Code string `gorm:"column:code" json:"code" form:"code"`
  149. }
  150. func (DictDataconfig) TableName() string {
  151. return "xt_drug_data_config"
  152. }