target_data.go 96KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560
  1. package sz
  2. import "time"
  3. type TempHdHospital struct {
  4. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  5. InstType string `gorm:"column:inst_type" json:"inst_type" form:"inst_type"`
  6. DepartmentName string `gorm:"column:department_name" json:"department_name" form:"department_name"`
  7. AuthorizedBeds int64 `gorm:"column:authorized_beds" json:"authorized_beds" form:"authorized_beds"`
  8. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  9. UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
  10. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  11. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  12. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  13. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  14. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  15. }
  16. func (TempHdHospital) TableName() string {
  17. return "t_hd_hospital"
  18. }
  19. type TempHdStaff struct {
  20. ID int64 `gorm:"column:id" json:"id" form:"id"`
  21. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  22. StaffId string `gorm:"column:staff_id" json:"staff_id" form:"staff_id"`
  23. IdType string `gorm:"column:id_type" json:"id_type" form:"id_type"`
  24. IdNo string `gorm:"column:id_no" json:"id_no" form:"id_no"`
  25. StaffName string `gorm:"column:staff_name" json:"staff_name" form:"staff_name"`
  26. Position int64 `gorm:"column:position" json:"position" form:"position"`
  27. TrainingName string `gorm:"column:training_name" json:"training_name" form:"training_name"`
  28. PracticeCertificate string `gorm:"column:practice_certificate" json:"practice_certificate" form:"practice_certificate"`
  29. PracticeCertificateNo string `gorm:"column:practice_certificate_no" json:"practice_certificate_no" form:"practice_certificate_no"`
  30. QualificationCertificate string `gorm:"column:qualification_certificate" json:"qualification_certificate" form:"qualification_certificate"`
  31. QualificationType string `gorm:"column:qualification_type" json:"qualification_type" form:"qualification_type"`
  32. PermanentType int64 `gorm:"column:permanent_type" json:"permanent_type" form:"permanent_type"`
  33. DiplomaFile string `gorm:"column:diploma_file" json:"diploma_file" form:"diploma_file"`
  34. DegreeCertificateFile string `gorm:"column:degree_certificate_file" json:"degree_certificate_file" form:"degree_certificate_file"`
  35. TrainingCertificateFile string `gorm:"column:training_certificate_file" json:"training_certificate_file" form:"training_certificate_file"`
  36. PracticeCertificateFile string `gorm:"column:practice_certificate_file" json:"practice_certificate_file" form:"practice_certificate_file"`
  37. QualificationCertificateFile string `gorm:"column:qualification_certificate_file" json:"qualification_certificate_file" form:"qualification_certificate_file"`
  38. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  39. TrainingDate time.Time `gorm:"column:training_date" json:"training_date" form:"training_date"`
  40. InDate time.Time `gorm:"column:in_date" json:"in_date" form:"in_date"`
  41. OutDate time.Time `gorm:"column:out_date" json:"out_date" form:"out_date"`
  42. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  43. UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
  44. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  45. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  46. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  47. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  48. TechnicalPosition int64 `gorm:"column:technical_position" json:"technical_position" form:"technical_position"`
  49. StaffLevel int64 `gorm:"column:staff_level" json:"staff_level" form:"staff_level"`
  50. IsAdvanced int64 `gorm:"column:is_advanced" json:"is_advanced" form:"is_advanced"`
  51. HospitalPosition int64 `gorm:"column:hospital_position" json:"hospital_position" form:"hospital_position"`
  52. StaffNo string `gorm:"column:staff_no" json:"staff_no" form:"staff_no"`
  53. Education string `gorm:"column:education" json:"education" form:"education"`
  54. Specialty string `gorm:"column:specialty" json:"specialty" form:"specialty"`
  55. StaffDegree string `gorm:"column:staff_degree" json:"staff_degree" form:"staff_degree"`
  56. StaffStatus int64 `gorm:"column:staff_status" json:"staff_status" form:"staff_status"`
  57. }
  58. func (TempHdStaff) TableName() string {
  59. return "t_hd_staff"
  60. }
  61. type TempHdLayout struct {
  62. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  63. PartitionName string `gorm:"column:partition_name" json:"partition_name" form:"partition_name"`
  64. PartitionImg string `gorm:"column:partition_img" json:"partition_img" form:"partition_img"`
  65. FunctionArea string `gorm:"column:function_area" json:"function_area" form:"function_area"`
  66. Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  67. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  68. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  69. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  70. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  71. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  72. }
  73. func (TempHdLayout) TableName() string {
  74. return "t_hd_layout"
  75. }
  76. type TempHdDivision struct {
  77. ID int64 `gorm:"column:id" json:"id"`
  78. DivisionId string `gorm:"column:division_id" json:"division_id"`
  79. HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
  80. DivisionName string `gorm:"column:division_name" json:"division_name"`
  81. Xgbz string `gorm:"column:xgbz" json:"xgbz"`
  82. DivisionType string `gorm:"column:division_type" json:"division_type"`
  83. CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
  84. UpdateTime time.Time `gorm:"column:update_time" json:"update_time"`
  85. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
  86. Mj string `gorm:"column:mj" json:"mj"`
  87. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
  88. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
  89. }
  90. func (TempHdDivision) TableName() string {
  91. return "t_hd_division"
  92. }
  93. type TempHdDm struct {
  94. ID int64 `gorm:"column:id" json:"id"`
  95. HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
  96. EquipmentId string `gorm:"column:equipment_id" json:"equipment_id"`
  97. SickbedNo string `gorm:"column:sickbed_no" json:"sickbed_no"`
  98. SickbedType string `gorm:"column:sickbed_type" json:"sickbed_type"`
  99. EquipmentBrand string `gorm:"column:equipment_brand" json:"equipment_brand"`
  100. EquipmentModel string `gorm:"column:equipment_model" json:"equipment_model"`
  101. EnableTime time.Time `gorm:"column:enable_time" json:"enable_time"`
  102. DiscardedTime time.Time `gorm:"column:discarded_time" json:"discarded_time"`
  103. Status string `gorm:"column:status" json:"status"`
  104. EquipmentType string `gorm:"column:equipment_type" json:"equipment_type"`
  105. Temperature string `gorm:"column:temperature" json:"temperature"`
  106. Humidity string `gorm:"column:humidity" json:"humidity"`
  107. Pressure string `gorm:"column:pressure" json:"pressure"`
  108. PressureUnit string `gorm:"column:pressure_unit" json:"pressure_unit"`
  109. WorkingVoltage string `gorm:"column:working_voltage" json:"working_voltage"`
  110. Xgbz string `gorm:"column:xgbz" json:"xgbz"`
  111. Bbp string `gorm:"column:bbp" json:"bbp"`
  112. CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
  113. UpdateTime time.Time `gorm:"column:update_time" json:"update_time"`
  114. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
  115. Mj string `gorm:"column:mj" json:"mj"`
  116. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
  117. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
  118. }
  119. func (TempHdDm) TableName() string {
  120. return "t_hd_dm"
  121. }
  122. type TempHdWm struct {
  123. ID int64 `gorm:"column:id" json:"id" form:"id"`
  124. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  125. EquipmentId string `gorm:"column:equipment_id" json:"equipment_id" form:"equipment_id"`
  126. EquipmentBrand string `gorm:"column:equipment_brand" json:"equipment_brand" form:"equipment_brand"`
  127. EquipmentModel string `gorm:"column:equipment_model" json:"equipment_model" form:"equipment_model"`
  128. EnableTime time.Time `gorm:"column:enable_time" json:"enable_time" form:"enable_time"`
  129. DiscardedTime time.Time `gorm:"column:discarded_time" json:"discarded_time" form:"discarded_time"`
  130. EquipmentType string `gorm:"column:equipment_type" json:"equipment_type" form:"equipment_type"`
  131. Temperature string `gorm:"column:temperature" json:"temperature" form:"temperature"`
  132. Humidity string `gorm:"column:humidity" json:"humidity" form:"humidity"`
  133. Pressure string `gorm:"column:pressure" json:"pressure" form:"pressure"`
  134. PressureUnit int64 `gorm:"column:pressure_unit" json:"pressure_unit" form:"pressure_unit"`
  135. QualityStandard string `gorm:"column:quality_standard" json:"quality_standard" form:"quality_standard"`
  136. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  137. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  138. UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
  139. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  140. Mj int64 `gorm:"column:mj" json:"mj" form:"mj"`
  141. Ylyl1 int64 `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  142. Ylyl2 int64 `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  143. }
  144. func (TempHdWm) TableName() string {
  145. return "t_hd_wm"
  146. }
  147. type TempHdMaintain struct {
  148. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  149. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  150. EquipmentId string `gorm:"column:equipment_id" json:"equipment_id" form:"equipment_id"`
  151. EquipmentType string `gorm:"column:equipment_type" json:"equipment_type" form:"equipment_type"`
  152. RepairTime time.Time `gorm:"column:repair_time" json:"repair_time" form:"repair_time"`
  153. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  154. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  155. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  156. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  157. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  158. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  159. }
  160. func (TempHdMaintain) TableName() string {
  161. return "t_hd_maintain"
  162. }
  163. type TempHdDisinfectMethod struct {
  164. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  165. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  166. EquipmentId string `gorm:"column:equipment_id" json:"equipment_id" form:"equipment_id"`
  167. EquipmentType string `gorm:"column:equipment_type" json:"equipment_type" form:"equipment_type"`
  168. DisinfectMethod string `gorm:"column:disinfect_method" json:"disinfect_method" form:"disinfect_method"`
  169. Disinfector string `gorm:"column:disinfector" json:"disinfector" form:"disinfector"`
  170. Concentration string `gorm:"column:concentration" json:"concentration" form:"concentration"`
  171. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  172. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  173. UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
  174. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  175. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  176. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  177. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  178. }
  179. func (TempHdDisinfectMethod) TableName() string {
  180. return "t_hd_disinfect_method"
  181. }
  182. // type TempHdDisinfectMethod struct {
  183. // ID int64 `gorm:"column:id" json:"id"`
  184. // SN string `gorm:"column:SN" json:"SN"`
  185. // HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
  186. // EquipmentId string `gorm:"column:EQUIPMENT_ID" json:"EQUIPMENT_ID"`
  187. // EquipmentType string `gorm:"column:EQUIPMENT_TYPE" json:"EQUIPMENT_TYPE"`
  188. // EquipmentModel string `gorm:"column:EQUIPMENT_MODEL" json:"EQUIPMENT_MODEL"`
  189. // DisinfectMethod string `gorm:"column:DISINFECT_METHOD" json:"DISINFECT_METHOD"`
  190. // Disinfector string `gorm:"column:DISINFECTOR" json:"DISINFECTOR"`
  191. // Concentration string `gorm:"column:CONCENTRATION" json:"CONCENTRATION"`
  192. // Frequency string `gorm:"column:FREQUENCY" json:"FREQUENCY"`
  193. // Xgbz string `gorm:"column:XGBZ" json:"XGBZ"`
  194. // CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
  195. // UpdateTime time.Time `gorm:"column:UPDATE_TIME" json:"UPDATE_TIME"`
  196. // Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
  197. // Mj string `gorm:"column:MJ" json:"MJ"`
  198. // Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
  199. // Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
  200. // }
  201. // func (TempHdDisinfectMethod) TableName() string {
  202. // return "t_hd_disinfect_method"
  203. // }
  204. type TempHdOtherMachine struct {
  205. ID int64 `gorm:"column:id" json:"id" form:"id"`
  206. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  207. EquipmentId string `gorm:"column:equipment_id" json:"equipment_id" form:"equipment_id"`
  208. EquipmentBrand string `gorm:"column:equipment_brand" json:"equipment_brand" form:"equipment_brand"`
  209. EquipmentModel string `gorm:"column:equipment_model" json:"equipment_model" form:"equipment_model"`
  210. EnableTime time.Time `gorm:"column:enable_time" json:"enable_time" form:"enable_time"`
  211. DiscardedTime time.Time `gorm:"column:discarded_time" json:"discarded_time" form:"discarded_time"`
  212. Status string `gorm:"column:status" json:"status" form:"status"`
  213. EquipmentType string `gorm:"column:equipment_type" json:"equipment_type" form:"equipment_type"`
  214. Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  215. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  216. UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
  217. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  218. Mj int64 `gorm:"column:mj" json:"mj" form:"mj"`
  219. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  220. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  221. }
  222. func (TempHdOtherMachine) TableName() string {
  223. return "t_hd_other_machine"
  224. }
  225. type TempHdDmDisinfect struct {
  226. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  227. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  228. EquipmentId string `gorm:"column:equipment_id" json:"equipment_id" form:"equipment_id"`
  229. SickbedNo string `gorm:"column:sickbed_no" json:"sickbed_no" form:"sickbed_no"`
  230. InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
  231. IsQualified string `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
  232. CaseOrder string `gorm:"column:case_order" json:"case_order" form:"case_order"`
  233. Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  234. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  235. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  236. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  237. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  238. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  239. }
  240. func (TempHdDmDisinfect) TableName() string {
  241. return "t_hd_dm_disinfect"
  242. }
  243. type TempWdDmDisinfect struct {
  244. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  245. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  246. EquipmentId string `gorm:"column:equipment_id" json:"equipment_id" form:"equipment_id"`
  247. InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
  248. IsQualified string `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
  249. CaseOrder string `gorm:"column:case_order" json:"case_order" form:"case_order"`
  250. Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  251. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  252. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  253. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  254. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  255. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  256. }
  257. func (TempWdDmDisinfect) TableName() string {
  258. return "t_hd_wm_disinfect"
  259. }
  260. type TempHdPatient struct {
  261. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  262. PatientNk int64 `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  263. CardNo string `gorm:"column:card_no" json:"card_no" form:"card_no"`
  264. CardType int64 `gorm:"column:card_type" json:"card_type" form:"card_type"`
  265. IdNo string `gorm:"column:id_no" json:"id_no" form:"id_no"`
  266. IdType string `gorm:"column:id_type" json:"id_type" form:"id_type"`
  267. PatientName string `gorm:"column:patient_name" json:"patient_name" form:"patient_name"`
  268. Gender string `gorm:"column:gender" json:"gender" form:"gender"`
  269. BornDate time.Time `gorm:"column:born_date" json:"born_date" form:"born_date"`
  270. DiagnosisSummary string `gorm:"column:diagnosis_summary" json:"diagnosis_summary" form:"diagnosis_summary"`
  271. IsCrf string `gorm:"column:is_crf" json:"is_crf" form:"is_crf"`
  272. AllergyHistory string `gorm:"column:allergy_history" json:"allergy_history" form:"allergy_history"`
  273. PayMethod string `gorm:"column:pay_method" json:"pay_method" form:"pay_method"`
  274. LocalInsurance string `gorm:"column:local_insurance" json:"local_insurance" form:"local_insurance"`
  275. DialysisStartTime time.Time `gorm:"column:dialysis_start_time" json:"dialysis_start_time" form:"dialysis_start_time"`
  276. LocalStartTime time.Time `gorm:"column:local_start_time" json:"local_start_time" form:"local_start_time"`
  277. OutpatientNo string `gorm:"column:outpatient_no" json:"outpatient_no" form:"outpatient_no"`
  278. HospitalizedNo string `gorm:"column:hospitalized_no" json:"hospitalized_no" form:"hospitalized_no"`
  279. Height int64 `gorm:"column:height" json:"height" form:"height"`
  280. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  281. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  282. UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
  283. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  284. Mj int64 `gorm:"column:mj" json:"mj" form:"mj"`
  285. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  286. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  287. }
  288. func (TempHdPatient) TableName() string {
  289. return "t_hd_patient"
  290. }
  291. type TempHdPatientOut struct {
  292. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  293. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  294. PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  295. SequelaeDate time.Time `gorm:"column:sequelae_date" json:"sequelae_date" form:"sequelae_date"`
  296. SequelaeType string `gorm:"column:sequelae_type" json:"sequelae_type" form:"sequelae_type"`
  297. SequelaeSubType string `gorm:"column:sequelae_sub_type" json:"sequelae_sub_type" form:"sequelae_sub_type"`
  298. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  299. DeathReason string `gorm:"column:death_reason" json:"death_reason" form:"death_reason"`
  300. ExtReason string `gorm:"column:ext_reason" json:"ext_reason" form:"ext_reason"`
  301. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  302. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  303. Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  304. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  305. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  306. }
  307. func (TempHdPatientOut) TableName() string {
  308. return "t_hd_patient_quit"
  309. }
  310. type TempHdPs struct {
  311. PrescribeId string `gorm:"column:prescribe_id" json:"prescribe_id" form:"prescribe_id"`
  312. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  313. PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  314. MedicalId string `gorm:"column:medical_id" json:"medical_id" form:"medical_id"`
  315. DrId int64 `gorm:"column:dr_id" json:"dr_id" form:"dr_id"`
  316. RrtType int64 `gorm:"column:rrt_type" json:"rrt_type" form:"rrt_type"`
  317. RrtTypeName string `gorm:"column:rrt_type_name" json:"rrt_type_name" form:"rrt_type_name"`
  318. DialysisFrequency int64 `gorm:"column:dialysis_frequency" json:"dialysis_frequency" form:"dialysis_frequency"`
  319. FrequencyUnit int64 `gorm:"column:frequency_unit" json:"frequency_unit" form:"frequency_unit"`
  320. PrescribeTime time.Time `gorm:"column:prescribe_time" json:"prescribe_time" form:"prescribe_time"`
  321. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  322. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  323. Mj int64 `gorm:"column:mj" json:"mj" form:"mj"`
  324. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  325. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  326. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  327. }
  328. func (TempHdPs) TableName() string {
  329. return "t_hd_ps"
  330. }
  331. type TempHdPsMedicine struct {
  332. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  333. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  334. MedicineTypeId string `gorm:"column:medicine_type_id" json:"medicine_type_id" form:"medicine_type_id"`
  335. MedicineId string `gorm:"column:medicine_id" json:"medicine_id" form:"medicine_id"`
  336. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  337. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  338. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  339. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  340. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  341. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  342. }
  343. func (TempHdPsMedicine) TableName() string {
  344. return "t_hd_ps_medicine"
  345. }
  346. type TempHdInfection struct {
  347. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  348. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  349. PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  350. Hbv int64 `gorm:"column:hbv" json:"hbv" form:"hbv"`
  351. Hcv int64 `gorm:"column:hcv" json:"hcv" form:"hcv"`
  352. Rpr int64 `gorm:"column:rpr" json:"rpr" form:"rpr"`
  353. Hiv int64 `gorm:"column:hiv" json:"hiv" form:"hiv"`
  354. Hbsag int64 `gorm:"column:hbsag" json:"hbsag" form:"hbsag"`
  355. Hbsab int64 `gorm:"column:hbsab" json:"hbsab" form:"hbsab"`
  356. Hbeag int64 `gorm:"column:hbeag" json:"hbeag" form:"hbeag"`
  357. Hbeab int64 `gorm:"column:hbeab" json:"hbeab" form:"hbeab"`
  358. Hbcab int64 `gorm:"column:hbcab" json:"hbcab" form:"hbcab"`
  359. CheckDate time.Time `gorm:"column:check_date" json:"check_date" form:"check_date"`
  360. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  361. DoctorId string `gorm:"column:doctor_id" json:"doctor_id" form:"doctor_id"`
  362. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  363. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  364. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  365. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  366. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  367. }
  368. func (TempHdInfection) TableName() string {
  369. return "t_hd_infection"
  370. }
  371. type TempHdInhospital struct {
  372. ID int64 `gorm:"column:id" json:"id" form:"id"`
  373. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  374. MedicalNo string `gorm:"column:medical_no" json:"medical_no" form:"medical_no"`
  375. AdmissionTime time.Time `gorm:"column:admission_time" json:"admission_time" form:"admission_time"`
  376. AdmissionCause int64 `gorm:"column:admission_cause" json:"admission_cause" form:"admission_cause"`
  377. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  378. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  379. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  380. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  381. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  382. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  383. PatientNk int64 `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  384. AdmissionCauseDesc string `gorm:"column:admission_cause_desc" json:"admission_cause_desc" form:"admission_cause_desc"`
  385. }
  386. func (TempHdInhospital) TableName() string {
  387. return "t_hd_inhospital"
  388. }
  389. type TempHdOuthospital struct {
  390. ID int64 `gorm:"column:id" json:"id" form:"id"`
  391. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  392. MedicalNo string `gorm:"column:medical_no" json:"medical_no" form:"medical_no"`
  393. DischargeDate time.Time `gorm:"column:discharge_date" json:"discharge_date" form:"discharge_date"`
  394. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  395. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  396. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  397. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  398. Ylyl1 int64 `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  399. Ylyl2 int64 `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  400. PatientNk int64 `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  401. }
  402. func (TempHdOuthospital) TableName() string {
  403. return "t_hd_outhospital"
  404. }
  405. type DataUpload struct {
  406. ID int64 `gorm:"column:id" json:"id" form:"id"`
  407. OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
  408. SyncType int64 `gorm:"column:sync_type" json:"sync_type" form:"sync_type"`
  409. SyncTime int64 `gorm:"column:sync_time" json:"sync_time" form:"sync_time"`
  410. SyncResultType int `gorm:"column:sync_result_type" json:"sync_result_type" form:"sync_result_type"`
  411. SyncRsultRemark string `gorm:"column:sync_result_remark" json:"sync_result_remark" form:"sync_result_remark"`
  412. SyncTotalNum int64 `gorm:"column:sync_total_num" json:"sync_total_num" form:"sync_total_num"`
  413. SyncSuccessNum int64 `gorm:"column:sync_success_num" json:"sync_success_num" form:"sync_success_num"`
  414. SyncInfo string `gorm:"column:sync_info" json:"sync_info" form:"sync_info"`
  415. CreateTime int64 `gorm:"column:create_time" json:"create_time" form:"create_time"`
  416. UpdateTime int64 `gorm:"column:update_time" json:"update_time" form:"update_time"`
  417. }
  418. func (DataUpload) TableName() string {
  419. return "data_sync_info"
  420. }
  421. type DataUploadConfig struct {
  422. ID int64 `gorm:"column:id" json:"id"`
  423. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  424. ProvinceId int64 `gorm:"column:province_id" json:"province_id"`
  425. CityId int64 `gorm:"column:city_id" json:"city_id"`
  426. GatewayAddress string `gorm:"column:gateway_address" json:"gateway_address"`
  427. AppId string `gorm:"column:app_id" json:"app_id"`
  428. Key string `gorm:"column:key" json:"key"`
  429. Status int64 `gorm:"column:status" json:"status"`
  430. CreateTime int64 `gorm:"column:create_time" json:"create_time"`
  431. ModifyTime int64 `gorm:"column:modify_time" json:"modify_time"`
  432. TimeQuantum int64 `gorm:"column:time_quantum" json:"time_quantum"`
  433. DepartmentName string `gorm:"column:department_name" json:"department_name"`
  434. HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
  435. InstType int64 `gorm:"column:inst_type" json:"inst_type"`
  436. DbHost string `gorm:"column:db_host" json:"db_host"`
  437. DbPort string `gorm:"column:db_port" json:"db_port"`
  438. DbUser string `gorm:"column:db_user" json:"db_user"`
  439. DbPass string `gorm:"column:db_pass" json:"db_pass"`
  440. DbName string `gorm:"column:db_name" json:"db_name"`
  441. }
  442. func (DataUploadConfig) TableName() string {
  443. return "data_upload_config"
  444. }
  445. type TempHdShift struct {
  446. ID int64 `gorm:"column:id" json:"id" form:"id"`
  447. PsId string `gorm:"column:ps_id" json:"ps_id" form:"ps_id"`
  448. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  449. PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  450. ScheduleDate time.Time `gorm:"column:schedule_date" json:"schedule_date" form:"schedule_date"`
  451. ShiftType string `gorm:"column:shift_type" json:"shift_type" form:"shift_type"`
  452. SickbedNo int64 `gorm:"column:sickbed_no" json:"sickbed_no" form:"sickbed_no"`
  453. ScheduleStatus string `gorm:"column:schedule_status" json:"schedule_status" form:"schedule_status"`
  454. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  455. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  456. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  457. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  458. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  459. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  460. }
  461. func (TempHdShift) TableName() string {
  462. return "t_hd_shift"
  463. }
  464. type TempHdDoctorsAdvice struct {
  465. ID int64 `gorm:"column:id" json:"id" form:"id"`
  466. MedicalOrderId string `gorm:"column:medical_order_id" json:"medical_order_id" form:"medical_order_id"`
  467. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  468. DialysisId string `gorm:"column:dialysis_id" json:"dialysis_id" form:"dialysis_id"`
  469. OrderType string `gorm:"column:order_type" json:"order_type" form:"order_type"`
  470. RrtType string `gorm:"column:rrt_type" json:"rrt_type" form:"rrt_type"`
  471. RrtTypeName string `gorm:"column:rrt_type_name" json:"rrt_type_name" form:"rrt_type_name"`
  472. PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  473. DialysisDuration int64 `gorm:"column:dialysis_duration" json:"dialysis_duration" form:"dialysis_duration"`
  474. BloodVol int64 `gorm:"column:blood_vol" json:"blood_vol" form:"blood_vol"`
  475. DryWeight float64 `gorm:"column:dry_weight" json:"dry_weight" form:"dry_weight"`
  476. Txq int64 `gorm:"column:txq" json:"txq" form:"txq"`
  477. FluxLevel string `gorm:"column:flux_level" json:"flux_level" form:"flux_level"`
  478. ReuseFlag string `gorm:"column:reuse_flag" json:"reuse_flag" form:"reuse_flag"`
  479. MembraneType string `gorm:"column:membrane_type" json:"membrane_type" form:"membrane_type"`
  480. MembraneSize string `gorm:"column:membrane_size" json:"membrane_size" form:"membrane_size"`
  481. Dlflow string `gorm:"column:dlflow" json:"dlflow" form:"dlflow"`
  482. DlTemperature string `gorm:"column:dl_temperature" json:"dl_temperature" form:"dl_temperature"`
  483. ReplacementMode string `gorm:"column:replacement_mode" json:"replacement_mode" form:"replacement_mode"`
  484. RlAmount string `gorm:"column:rl_amount" json:"rl_amount" form:"rl_amount"`
  485. Anticoagulant string `gorm:"column:anticoagulant" json:"anticoagulant" form:"anticoagulant"`
  486. AnticoagulantQuantity string `gorm:"column:anticoagulant_quantity" json:"anticoagulant_quantity" form:"anticoagulant_quantity"`
  487. InitialAmount string `gorm:"column:initial_amount" json:"initial_amount" form:"initial_amount"`
  488. DlPotassium string `gorm:"column:dl_potassium" json:"dl_potassium" form:"dl_potassium"`
  489. DlSodium string `gorm:"column:dl_sodium" json:"dl_sodium" form:"dl_sodium"`
  490. BicarbonateRadical string `gorm:"column:bicarbonate_radical" json:"bicarbonate_radical" form:"bicarbonate_radical"`
  491. MaintenanceQuantity string `gorm:"column:maintenance_quantity" json:"maintenance_quantity" form:"maintenance_quantity"`
  492. Conductivity string `gorm:"column:conductivity" json:"conductivity" form:"conductivity"`
  493. DlCalcium string `gorm:"column:dl_calcium" json:"dl_calcium" form:"dl_calcium"`
  494. ExecuteOrder int64 `gorm:"column:execute_order" json:"execute_order" form:"execute_order"`
  495. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  496. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  497. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  498. Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  499. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  500. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  501. }
  502. func (TempHdDoctorsAdvice) TableName() string {
  503. return "t_hd_doctors_advice"
  504. }
  505. type TempHdDialysis struct {
  506. //ID int64 `gorm:"column:id" json:"id" form:"id"`
  507. DialysisId string `gorm:"column:dialysis_id" json:"dialysis_id" form:"dialysis_id"`
  508. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  509. PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  510. PsId string `gorm:"column:ps_id" json:"ps_id" form:"ps_id"`
  511. DialysisDate time.Time `gorm:"column:dialysis_date" json:"dialysis_date" form:"dialysis_date"`
  512. SickbedNo string `gorm:"column:sickbed_no" json:"sickbed_no" form:"sickbed_no"`
  513. DivisionId string `gorm:"column:division_id" json:"division_id" form:"division_id"`
  514. EquipmentId string `gorm:"column:equipment_id" json:"equipment_id" form:"equipment_id"`
  515. MixDialysis string `gorm:"column:mix_dialysis" json:"mix_dialysis" form:"mix_dialysis"`
  516. Ufv int64 `gorm:"column:ufv" json:"ufv" form:"ufv"`
  517. TotalReplace int64 `gorm:"column:total_replace" json:"total_replace" form:"total_replace"`
  518. TotalTreatDuration int64 `gorm:"column:total_treat_duration" json:"total_treat_duration" form:"total_treat_duration"`
  519. IsHospitalization string `gorm:"column:is_hospitalization" json:"is_hospitalization" form:"is_hospitalization"`
  520. IsEmergency string `gorm:"column:is_emergency" json:"is_emergency" form:"is_emergency"`
  521. EmergencyReason string `gorm:"column:emergency_reason" json:"emergency_reason" form:"emergency_reason"`
  522. IsPerioperativePeriod string `gorm:"column:is_perioperative_period" json:"is_perioperative_period" form:"is_perioperative_period"`
  523. BeforeSbp int64 `gorm:"column:before_sbp" json:"before_sbp" form:"before_sbp"`
  524. BeforeDbp int64 `gorm:"column:before_dbp" json:"before_dbp" form:"before_dbp"`
  525. AfterSbp int64 `gorm:"column:after_sbp" json:"after_sbp" form:"after_sbp"`
  526. AfterDbp int64 `gorm:"column:after_dbp" json:"after_dbp" form:"after_dbp"`
  527. BeforeWeight float64 `gorm:"column:before_weight" json:"before_weight" form:"before_weight"`
  528. AfterWeight float64 `gorm:"column:after_weight" json:"after_weight" form:"after_weight"`
  529. AccessId string `gorm:"column:access_id" json:"access_id" form:"access_id"`
  530. DialyzerId string `gorm:"column:dialyzer_id" json:"dialyzer_id" form:"dialyzer_id"`
  531. Ktv float64 `gorm:"column:ktv" json:"ktv" form:"ktv"`
  532. Urr float64 `gorm:"column:urr" json:"urr" form:"urr"`
  533. BeforeBun float64 `gorm:"column:before_bun" json:"before_bun" form:"before_bun"`
  534. AfterBun float64 `gorm:"column:after_bun" json:"after_bun" form:"after_bun"`
  535. ChargeDoctorId string `gorm:"column:charge_doctor_id" json:"charge_doctor_id" form:"charge_doctor_id"`
  536. ChargeNurseId string `gorm:"column:charge_nurse_id" json:"charge_nurse_id" form:"charge_nurse_id"`
  537. UpNurseId string `gorm:"column:up_nurse_id" json:"up_nurse_id" form:"up_nurse_id"`
  538. DownNurseId string `gorm:"column:down_nurse_id" json:"down_nurse_id" form:"down_nurse_id"`
  539. CheckNurseId string `gorm:"column:check_nurse_id" json:"check_nurse_id" form:"check_nurse_id"`
  540. PunctureNurseId string `gorm:"column:puncture_nurse_id" json:"puncture_nurse_id" form:"puncture_nurse_id"`
  541. StartTime time.Time `gorm:"column:start_time" json:"start_time" form:"start_time"`
  542. EndTime time.Time `gorm:"column:end_time" json:"end_time" form:"end_time"`
  543. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  544. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  545. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  546. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  547. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  548. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  549. }
  550. func (TempHdDialysis) TableName() string {
  551. return "t_hd_dialysis"
  552. }
  553. type TempHdMiddle struct {
  554. ID int64 `gorm:"column:id" json:"id" form:"id"`
  555. Sn int64 `gorm:"column:sn" json:"sn" form:"sn"`
  556. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  557. PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  558. DialysisId string `gorm:"column:dialysis_id" json:"dialysis_id" form:"dialysis_id"`
  559. MonitorTime time.Time `gorm:"column:monitor_time" json:"monitor_time" form:"monitor_time"`
  560. Sbp int64 `gorm:"column:sbp" json:"sbp" form:"sbp"`
  561. Dbp int64 `gorm:"column:dbp" json:"dbp" form:"dbp"`
  562. P int64 `gorm:"column:p" json:"p" form:"p"`
  563. Ns int64 `gorm:"column:ns" json:"ns" form:"ns"`
  564. Qb int64 `gorm:"column:qb" json:"qb" form:"qb"`
  565. Ap int64 `gorm:"column:ap" json:"ap" form:"ap"`
  566. Vp int64 `gorm:"column:vp" json:"vp" form:"vp"`
  567. Tmp int64 `gorm:"column:tmp" json:"tmp" form:"tmp"`
  568. Ufr int64 `gorm:"column:ufr" json:"ufr" form:"ufr"`
  569. Ufv int64 `gorm:"column:ufv" json:"ufv" form:"ufv"`
  570. OnLine int64 `gorm:"column:on_line" json:"on_line" form:"on_line"`
  571. Spo2 float64 `gorm:"column:spo2" json:"spo2" form:"spo2"`
  572. RespiratorySystem int64 `gorm:"column:respiratory_system" json:"respiratory_system" form:"respiratory_system"`
  573. OtherSituation string `gorm:"column:other_situation" json:"other_situation" form:"other_situation"`
  574. Nurse string `gorm:"column:nurse" json:"nurse" form:"nurse"`
  575. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  576. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  577. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  578. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  579. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  580. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  581. }
  582. func (TempHdMiddle) TableName() string {
  583. return "t_hd_middle"
  584. }
  585. type TempHdAccess struct {
  586. AccessId string `gorm:"column:access_id" json:"access_id" form:"access_id"`
  587. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  588. PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  589. AccessType string `gorm:"column:access_type" json:"access_type" form:"access_type"`
  590. AccessTypeName string `gorm:"column:access_type_name" json:"access_type_name" form:"access_type_name"`
  591. AccessStatus string `gorm:"column:access_status" json:"access_status" form:"access_status"`
  592. ChannelPosition string `gorm:"column:channel_position" json:"channel_position" form:"channel_position"`
  593. CatheterSite string `gorm:"column:catheter_site" json:"catheter_site" form:"catheter_site"`
  594. RemoveTime time.Time `gorm:"column:remove_time" json:"remove_time" form:"remove_time"`
  595. RemoveReason string `gorm:"column:remove_reason" json:"remove_reason" form:"remove_reason"`
  596. RemoveReasonDesc string `gorm:"column:remove_reason_desc" json:"remove_reason_desc" form:"remove_reason_desc"`
  597. SetupDate time.Time `gorm:"column:setup_date" json:"setup_date" form:"setup_date"`
  598. FirstUseTime time.Time `gorm:"column:first_use_time" json:"first_use_time" form:"first_use_time"`
  599. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  600. UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
  601. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  602. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  603. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  604. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  605. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  606. }
  607. func (TempHdAccess) TableName() string {
  608. return "t_hd_access"
  609. }
  610. type TempHdSickbed struct {
  611. SickbedNo int64 `gorm:"column:sickbed_no" json:"sickbed_no" form:"sickbed_no"`
  612. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  613. DivisionId string `gorm:"column:division_id" json:"division_id" form:"division_id"`
  614. SickbedCode string `gorm:"column:sickbed_code" json:"sickbed_code" form:"sickbed_code"`
  615. SickbedType string `gorm:"column:sickbed_type" json:"sickbed_type" form:"sickbed_type"`
  616. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  617. UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
  618. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  619. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  620. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  621. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  622. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  623. }
  624. func (TempHdSickbed) TableName() string {
  625. return "t_hd_sickbed"
  626. }
  627. type TempHdDiagnosis struct {
  628. DiagnosisId string `gorm:"column:diagnosis_id" json:"diagnosis_id" form:"diagnosis_id"`
  629. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  630. PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  631. DiagnosisTime time.Time `gorm:"column:diagnosis_time" json:"diagnosis_time" form:"diagnosis_time"`
  632. DiagnosisType string `gorm:"column:diagnosis_type" json:"diagnosis_type" form:"diagnosis_type"`
  633. DiagnosisTypeItem string `gorm:"column:diagnosis_type_item" json:"diagnosis_type_item" form:"diagnosis_type_item"`
  634. DiagnosisTypeDetail string `gorm:"column:diagnosis_type_detail" json:"diagnosis_type_detail" form:"diagnosis_type_detail"`
  635. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  636. UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
  637. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  638. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  639. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  640. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  641. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  642. }
  643. func (TempHdDiagnosis) TableName() string {
  644. return "t_hd_diagnosis"
  645. }
  646. type TempHdComplication struct {
  647. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  648. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  649. PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  650. DialysisId int64 `gorm:"column:dialysis_id" json:"dialysis_id" form:"dialysis_id"`
  651. MonitorId int64 `gorm:"column:monitor_id" json:"monitor_id" form:"monitor_id"`
  652. NeopathyTime int64 `gorm:"column:neopathy_time" json:"neopathy_time" form:"neopathy_time"`
  653. NeopathyType string `gorm:"column:neopathy_type" json:"neopathy_type" form:"neopathy_type"`
  654. NeopathyDesc string `gorm:"column:neopathy_desc" json:"neopathy_desc" form:"neopathy_desc"`
  655. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  656. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  657. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  658. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  659. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  660. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  661. }
  662. func (TempHdComplication) TableName() string {
  663. return "t_hd_complication"
  664. }
  665. type TempHdLisReport struct {
  666. LabSno string `gorm:"column:lab_sno" json:"lab_sno" form:"lab_sno"`
  667. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  668. PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  669. ReportDate time.Time `gorm:"column:report_date" json:"report_date" form:"report_date"`
  670. CheckDate string `gorm:"column:check_date" json:"check_date" form:"check_date"`
  671. JzNo string `gorm:"column:jz_no" json:"jz_no" form:"jz_no"`
  672. MzFlag string `gorm:"column:mz_flag" json:"mz_flag" form:"mz_flag"`
  673. ZyNo string `gorm:"column:zy_no" json:"zy_no" form:"zy_no"`
  674. MzNo string `gorm:"column:mz_no" json:"mz_no" form:"mz_no"`
  675. DepartmentCode string `gorm:"column:department_code" json:"department_code" form:"department_code"`
  676. DepartmentName string `gorm:"column:department_name" json:"department_name" form:"department_name"`
  677. CardNo string `gorm:"column:card_no" json:"card_no" form:"card_no"`
  678. CardType string `gorm:"column:card_type" json:"card_type" form:"card_type"`
  679. PatientName string `gorm:"column:patient_name" json:"patient_name" form:"patient_name"`
  680. DepCode string `gorm:"column:dep_code" json:"dep_code" form:"dep_code"`
  681. DepName string `gorm:"column:dep_name" json:"dep_name" form:"dep_name"`
  682. InspectedType string `gorm:"column:inspected_type" json:"inspected_type" form:"inspected_type"`
  683. ReportCategry string `gorm:"column:report_categry" json:"report_categry" form:"report_categry"`
  684. ApplicationName string `gorm:"column:application_name" json:"application_name" form:"application_name"`
  685. ApplicationType string `gorm:"column:application_type" json:"application_type" form:"application_type"`
  686. CheckName string `gorm:"column:check_name" json:"check_name" form:"check_name"`
  687. CheckItemName string `gorm:"column:check_item_name" json:"check_item_name" form:"check_item_name"`
  688. CheckItemCode string `gorm:"column:check_item_code" json:"check_item_code" form:"check_item_code"`
  689. RecordCcount int64 `gorm:"column:record_ccount" json:"record_ccount" form:"record_ccount"`
  690. CheckResult string `gorm:"column:check_result" json:"check_result" form:"check_result"`
  691. DiagnoseCode string `gorm:"column:diagnose_code" json:"diagnose_code" form:"diagnose_code"`
  692. DiagnoseName string `gorm:"column:diagnose_name" json:"diagnose_name" form:"diagnose_name"`
  693. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  694. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  695. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  696. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  697. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  698. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  699. }
  700. func (TempHdLisReport) TableName() string {
  701. return "t_hd_lis_report"
  702. }
  703. type TempHdLisIndicators struct {
  704. InspectedResultNo string `gorm:"column:inspected_result_no" json:"inspected_result_no" form:"inspected_result_no"`
  705. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  706. LabSno string `gorm:"column:lab_sno" json:"lab_sno" form:"lab_sno"`
  707. ReportDate time.Time `gorm:"column:report_date" json:"report_date" form:"report_date"`
  708. CheckDate time.Time `gorm:"column:check_date" json:"check_date" form:"check_date"`
  709. InspectedIndicate string `gorm:"column:inspected_indicate" json:"inspected_indicate" form:"inspected_indicate"`
  710. InspectedItemEnName string `gorm:"column:inspected_item_en_name" json:"inspected_item_en_name" form:"inspected_item_en_name"`
  711. Method string `gorm:"column:method" json:"method" form:"method"`
  712. InspectedItemCnName string `gorm:"column:inspected_item_cn_name" json:"inspected_item_cn_name" form:"inspected_item_cn_name"`
  713. InspectedResultDesc string `gorm:"column:inspected_result_desc" json:"inspected_result_desc" form:"inspected_result_desc"`
  714. InspectedResultValue string `gorm:"column:inspected_result_value" json:"inspected_result_value" form:"inspected_result_value"`
  715. InspectedResultUnit string `gorm:"column:inspected_result_unit" json:"inspected_result_unit" form:"inspected_result_unit"`
  716. Loinc string `gorm:"column:loinc" json:"loinc" form:"loinc"`
  717. RefRange string `gorm:"column:ref_range" json:"ref_range" form:"ref_range"`
  718. UnitType string `gorm:"column:unit_type" json:"unit_type" form:"unit_type"`
  719. InspectedResult int64 `gorm:"column:inspected_result" json:"inspected_result" form:"inspected_result"`
  720. Yctssm string `gorm:"column:yctssm" json:"yctssm" form:"yctssm"`
  721. Sfwjz string `gorm:"column:sfwjz" json:"sfwjz" form:"sfwjz"`
  722. Sorting int64 `gorm:"column:sorting" json:"sorting" form:"sorting"`
  723. PrintGroup int64 `gorm:"column:print_group" json:"print_group" form:"print_group"`
  724. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  725. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  726. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  727. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  728. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  729. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  730. }
  731. func (TempHdLisIndicators) TableName() string {
  732. return "t_hd_lis_indicators"
  733. }
  734. type TempHdLisCulture struct {
  735. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  736. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  737. EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
  738. InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
  739. IsQualified string `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
  740. InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
  741. IsSubstitutionQualified string `gorm:"column:is_substitution_qualified" json:"is_substitution_qualified" form:"is_substitution_qualified"`
  742. SubstitutionInspectedValue string `gorm:"column:substitution_inspected_value" json:"substitution_inspected_value" form:"substitution_inspected_value"`
  743. CaseOrder string `gorm:"column:case_order" json:"case_order" form:"case_order"`
  744. UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
  745. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  746. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  747. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  748. Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  749. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  750. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  751. }
  752. func (TempHdLisCulture) TableName() string {
  753. return "t_hd_dm_dialysate_bc"
  754. }
  755. type TempHdLisDialysate struct {
  756. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  757. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  758. EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
  759. InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
  760. IsQualified string `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
  761. InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
  762. CaseOrder string `gorm:"column:case_order" json:"case_order" form:"case_order"`
  763. UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
  764. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  765. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  766. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  767. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  768. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  769. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  770. }
  771. func (TempHdLisDialysate) TableName() string {
  772. return "t_hd_dm_dialysate_en"
  773. }
  774. type TempHdLisAirDisinfect struct {
  775. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  776. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  777. IsQualified string `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
  778. InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
  779. InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
  780. CaseOrder string `gorm:"column:case_order" json:"case_order" form:"case_order"`
  781. UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
  782. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  783. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  784. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  785. Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  786. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  787. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  788. }
  789. func (TempHdLisAirDisinfect) TableName() string {
  790. return "t_hd_air_disinfect"
  791. }
  792. type TempHdLisBodyDisinfect struct {
  793. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  794. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  795. IsQualified string `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
  796. InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
  797. InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
  798. CaseOrder string `gorm:"column:case_order" json:"case_order" form:"case_order"`
  799. UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
  800. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  801. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  802. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  803. Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  804. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  805. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  806. }
  807. func (TempHdLisBodyDisinfect) TableName() string {
  808. return "xt_body_detection"
  809. }
  810. type TempHdLisWaterFc struct {
  811. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  812. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  813. EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
  814. WaterType string `gorm:"column:water_type" json:"water_type" form:"water_type"`
  815. InspectionOrgId string `gorm:"column:inspection_org_id" json:"inspection_org_id" form:"inspection_org_id"`
  816. InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
  817. IsQualified string `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
  818. InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
  819. CaseOrder string `gorm:"column:case_order" json:"case_order" form:"case_order"`
  820. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  821. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  822. UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
  823. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  824. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  825. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  826. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  827. }
  828. func (TempHdLisWaterFc) TableName() string {
  829. return "t_hd_water_fc"
  830. }
  831. type TempHdLisWaterEl struct {
  832. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  833. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  834. EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
  835. WaterType string `gorm:"column:water_type" json:"water_type" form:"water_type"`
  836. InspectionOrgId string `gorm:"column:inspection_org_id" json:"inspection_org_id" form:"inspection_org_id"`
  837. InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
  838. IsQualified string `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
  839. InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
  840. CaseOrder string `gorm:"column:case_order" json:"case_order" form:"case_order"`
  841. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  842. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  843. UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
  844. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  845. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  846. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  847. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  848. }
  849. func (TempHdLisWaterEl) TableName() string {
  850. return "t_hd_water_el"
  851. }
  852. type TempHdLisWaterTe struct {
  853. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  854. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  855. EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
  856. WaterType string `gorm:"column:water_type" json:"water_type" form:"water_type"`
  857. InspectionOrgId string `gorm:"column:inspection_org_id" json:"inspection_org_id" form:"inspection_org_id"`
  858. InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
  859. IsQualified string `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
  860. InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
  861. CaseOrder string `gorm:"column:case_order" json:"case_order" form:"case_order"`
  862. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  863. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  864. UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
  865. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  866. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  867. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  868. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  869. }
  870. func (TempHdLisWaterTe) TableName() string {
  871. return "t_hd_water_te"
  872. }
  873. type TempHdLisWaterNc struct {
  874. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  875. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  876. EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
  877. WaterType string `gorm:"column:water_type" json:"water_type" form:"water_type"`
  878. InspectionOrgId string `gorm:"column:inspection_org_id" json:"inspection_org_id" form:"inspection_org_id"`
  879. InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
  880. IsQualified string `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
  881. InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
  882. CaseOrder string `gorm:"column:case_order" json:"case_order" form:"case_order"`
  883. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  884. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  885. UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
  886. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  887. Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  888. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  889. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  890. }
  891. func (TempHdLisWaterNc) TableName() string {
  892. return "t_hd_water_nc"
  893. }
  894. type TempHdLisWaterPh struct {
  895. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  896. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  897. EquitmentId string `gorm:"column:equiment_id" json:"equiment_id" form:"equiment_id"`
  898. WaterType string `gorm:"column:water_type" json:"water_type" form:"water_type"`
  899. InspectionOrgId string `gorm:"column:inspection_org_id" json:"inspection_org_id" form:"inspection_org_id"`
  900. InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
  901. IsQualified string `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
  902. InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
  903. CaseOrder string `gorm:"column:case_order" json:"case_order" form:"case_order"`
  904. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  905. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  906. UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
  907. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  908. UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
  909. Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  910. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  911. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  912. }
  913. func (TempHdLisWaterPh) TableName() string {
  914. return "t_hd_water_ph"
  915. }
  916. type TempHdLisWaterWh struct {
  917. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  918. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  919. EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
  920. WaterType string `gorm:"column:water_type" json:"water_type" form:"water_type"`
  921. InspectionOrgId string `gorm:"column:inspection_org_id" json:"inspection_org_id" form:"inspection_org_id"`
  922. InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
  923. IsQualified string `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
  924. InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
  925. CaseOrder string `gorm:"column:case_order" json:"case_order" form:"case_order"`
  926. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  927. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  928. UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
  929. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  930. UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
  931. Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  932. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  933. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  934. }
  935. func (TempHdLisWaterWh) TableName() string {
  936. return "t_hd_water_wh"
  937. }
  938. type TempHdCi struct {
  939. InfectSn string `gorm:"column:infect_sn" json:"infect_sn" form:"infect_sn"`
  940. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  941. PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  942. AccessId string `gorm:"column:access_id" json:"access_id" form:"access_id"`
  943. CiType string `gorm:"column:ci_type" json:"ci_type" form:"ci_type"`
  944. BloodCulture string `gorm:"column:blood_culture" json:"blood_culture" form:"blood_culture"`
  945. InfectionDate time.Time `gorm:"column:infection_date" json:"infection_date" form:"infection_date"`
  946. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  947. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  948. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  949. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  950. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  951. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  952. }
  953. func (TempHdCi) TableName() string {
  954. return "t_hd_ci"
  955. }
  956. type TempHdCiOutCome struct {
  957. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  958. InfectSn string `gorm:"column:infect_sn" json:"infect_sn" form:"infect_sn"`
  959. PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
  960. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  961. SequelaeType string `gorm:"column:sequelae_type" json:"sequelae_type" form:"sequelae_type"`
  962. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  963. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  964. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  965. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  966. UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
  967. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  968. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  969. }
  970. func (TempHdCiOutCome) TableName() string {
  971. return "t_hd_ci_outcome"
  972. }
  973. type TempHdLisWaterBc struct {
  974. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  975. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  976. EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
  977. WaterType string `gorm:"column:water_type" json:"water_type" form:"water_type"`
  978. InspectionOrgId string `gorm:"column:inspection_org_id" json:"inspection_org_id" form:"inspection_org_id"`
  979. InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
  980. IsQualified string `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
  981. InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
  982. CaseOrder string `gorm:"column:case_order" json:"case_order" form:"case_order"`
  983. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  984. Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  985. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  986. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  987. UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
  988. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  989. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  990. }
  991. func (TempHdLisWaterBc) TableName() string {
  992. return "t_hd_water_bc"
  993. }
  994. type TempHdLisWaterEn struct {
  995. Sn string `gorm:"column:sn" json:"sn" form:"sn"`
  996. HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
  997. EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
  998. WaterType string `gorm:"column:water_type" json:"water_type" form:"water_type"`
  999. InspectionOrgId string `gorm:"column:inspection_org_id" json:"inspection_org_id" form:"inspection_org_id"`
  1000. InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
  1001. IsQualified string `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
  1002. InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
  1003. CaseOrder string `gorm:"column:case_order" json:"case_order" form:"case_order"`
  1004. Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
  1005. Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
  1006. Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
  1007. Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
  1008. UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
  1009. Mj string `gorm:"column:mj" json:"mj" form:"mj"`
  1010. CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
  1011. }
  1012. func (TempHdLisWaterEn) TableName() string {
  1013. return "t_hd_water_en"
  1014. }
  1015. type TBDICPractitioner struct {
  1016. GH string `gorm:"column:GH" json:"GH" form:"GH"`
  1017. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1018. ZCM string `gorm:"column:ZCM" json:"ZCM" form:"ZCM"`
  1019. XM string `gorm:"column:XM" json:"XM" form:"XM"`
  1020. XBBM string `gorm:"column:XBBM" json:"XBBM" form:"XBBM"`
  1021. SSKS string `gorm:"column:SSKS" json:"SSKS" form:"SSKS"`
  1022. SZYWKSMC string `gorm:"column:SZYWKSMC" json:"SZYWKSMC" form:"SZYWKSMC"`
  1023. ZWDM string `gorm:"column:ZWDM" json:"ZWDM" form:"ZWDM"`
  1024. ZHIW string `gorm:"column:ZHIW" json:"ZHIW" form:"ZHIW"`
  1025. ZCDM string `gorm:"column:ZCDM" json:"ZCDM" form:"ZCDM"`
  1026. ZHIC string `gorm:"column:ZHIC" json:"ZHIC" form:"ZHIC"`
  1027. NNRYLDQK string `gorm:"column:NNRYLDQK" json:"NNRYLDQK" form:"NNRYLDQK"`
  1028. BZQK string `gorm:"column:BZQK" json:"BZQK" form:"BZQK"`
  1029. LB string `gorm:"column:LB" json:"LB" form:"LB"`
  1030. // ZZKYRYBS string `gorm:"column:ZZKYRYBS" json:"ZZKYRYBS" form:"ZZKYRYBS"`
  1031. YWSCSJ time.Time `gorm:"column:YWSCSJ" json:"YWSCSJ" form:"YWSCSJ"`
  1032. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1033. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1034. }
  1035. func (TBDICPractitioner) TableName() string {
  1036. return "TB_DIC_Practitioner"
  1037. }
  1038. type TBDICMedicines struct {
  1039. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1040. YYZBDM string `gorm:"column:YYZBDM" json:"YYZBDM" form:"YYZBDM"`
  1041. YPMC string `gorm:"column:YPMC" json:"YPMC" form:"YPMC"`
  1042. TYMC string `gorm:"column:TYMC" json:"TYMC" form:"TYMC"`
  1043. YPGG string `gorm:"column:YPGG" json:"YPGG" form:"YPGG"`
  1044. YNJXDA string `gorm:"column:YNJXDA" json:"YNJXDA" form:"YNJXDA"`
  1045. YNJXMC string `gorm:"column:YNJXMC" json:"YNJXMC" form:"YNJXMC"`
  1046. SYBZ string `gorm:"column:SYBZ" json:"SYBZ" form:"SYBZ"`
  1047. TSBZ string `gorm:"column:TSBZ" json:"TSBZ" form:"TSBZ"`
  1048. KSSBZ string `gorm:"column:KSSBZ" json:"KSSBZ" form:"KSSBZ"`
  1049. YPPZWH string `gorm:"column:YPPZWH" json:"YPPZWH" form:"YPPZWH"`
  1050. YPLX string `gorm:"column:YPLX" json:"YPLX" form:"YPLX"`
  1051. YNZJBZ string `gorm:"column:YNZJBZ" json:"YNZJBZ" form:"YNZJBZ"`
  1052. GJYBZ string `gorm:"column:GJYBZ" json:"GJYBZ" form:"GJYBZ"`
  1053. SJYBZ string `gorm:"column:SJYBZ" json:"SJYBZ" form:"SJYBZ"`
  1054. SHJYBZ string `gorm:"column:SHJYBZ" json:"SHJYBZ" form:"SHJYBZ"`
  1055. QJYBZ string `gorm:"column:QJYBZ" json:"QJYBZ" form:"QJYBZ"`
  1056. YWSCSJ time.Time `gorm:"column:YWSCSJ" json:"YWSCSJ" form:"YWSCSJ"`
  1057. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1058. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1059. }
  1060. func (TBDICMedicines) TableName() string {
  1061. return "TB_DIC_Medicines"
  1062. }
  1063. type TBDICZlxmml struct {
  1064. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1065. YYZBDM string `gorm:"column:YYZBDM" json:"YYZBDM" form:"YYZBDM"`
  1066. XMMC string `gorm:"column:XMMC" json:"XMMC" form:"XMMC"`
  1067. SFDW string `gorm:"column:SFDW" json:"SFDW" form:"SFDW"`
  1068. SFDJ string `gorm:"column:SFDJ" json:"SFDJ" form:"SFDJ"`
  1069. SYBZ string `gorm:"column:SYBZ" json:"SYBZ" form:"SYBZ"`
  1070. YWSCSJ time.Time `gorm:"column:YWSCSJ" json:"YWSCSJ" form:"YWSCSJ"`
  1071. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1072. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1073. }
  1074. func (TBDICZlxmml) TableName() string {
  1075. return "TB_DIC_ZLXMML"
  1076. }
  1077. type TBDICYpdzzd struct {
  1078. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1079. YNYPDM string `gorm:"column:YNYPDM" json:"YNYPDM" form:"YNYPDM"`
  1080. YPMC string `gorm:"column:YPMC" json:"YPMC" form:"YPMC"`
  1081. YPLX string `gorm:"column:YPLX" json:"YPLX" form:"YPLX"`
  1082. YBMLBM string `gorm:"column:YBMLBM" json:"YBMLBM" form:"YBMLBM"`
  1083. YBYPMC string `gorm:"column:YBYPMC" json:"YBYPMC" form:"YBYPMC"`
  1084. YPSPWYBSDM string `gorm:"column:YPSPWYBSDM" json:"YPSPWYBSDM" form:"YPSPWYBSDM"`
  1085. YPSPWYBSMC string `gorm:"column:YPSPWYBSMC" json:"YPSPWYBSMC" form:"YPSPWYBSMC"`
  1086. SJSHCSJ time.Time `gorm:"column:SJSHCSJ" json:"SJSHCSJ" form:"SJSHCSJ"`
  1087. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1088. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1089. }
  1090. func (TBDICYpdzzd) TableName() string {
  1091. return "TB_DIC_YPDZZD"
  1092. }
  1093. type TBDICZlxmdzzd struct {
  1094. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1095. YNZLXMDM string `gorm:"column:YNZLXMDM" json:"YNZLXMDM" form:"YNZLXMDM"`
  1096. YNZLXMMC string `gorm:"column:YNZLXMMC" json:"YNZLXMMC" form:"YNZLXMMC"`
  1097. WJSFDM string `gorm:"column:WJSFDM" json:"WJSFDM" form:"WJSFDM"`
  1098. WJSFMC string `gorm:"column:WJSFMC" json:"WJSFMC" form:"WJSFMC"`
  1099. YBSFXMBM string `gorm:"column:YBSFXMBM" json:"YBSFXMBM" form:"YBSFXMBM"`
  1100. YBSFXMMC string `gorm:"column:YBSFXMMC" json:"YBSFXMMC" form:"YBSFXMMC"`
  1101. SJSHCSJ time.Time `gorm:"column:SJSHCSJ" json:"SJSHCSJ" form:"SJSHCSJ"`
  1102. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1103. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1104. }
  1105. func (TBDICZlxmdzzd) TableName() string {
  1106. return "TB_DIC_ZLXMDZZD"
  1107. }
  1108. type TM_DICT_BED struct {
  1109. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1110. CWBM string `gorm:"column:CWBM" json:"CWBM" form:"CWBM"`
  1111. YWSJ string `gorm:"column:YWSJ" json:"YWSJ" form:"YWSJ"`
  1112. CH string `gorm:"column:CH" json:"CH" form:"CH"`
  1113. SSKSDM string `gorm:"column:SSKSDM" json:"SSKSDM" form:"SSKSDM"`
  1114. SSKSMC string `gorm:"column:SSKSMC" json:"SSKSMC" form:"SSKSMC"`
  1115. CWLX string `gorm:"column:CWLX" json:"CWLX" form:"CWLX"`
  1116. CWZT string `gorm:"column:CWZT" json:"ZWDM" form:"CWZT"`
  1117. DYZLXMDJ string `gorm:"column:DYZLXMDJ" json:"DYZLXMDJ" form:"DYZLXMDJ"`
  1118. ZYH string `gorm:"column:ZYH" json:"ZYH" form:"ZYH"`
  1119. YWSCSJ time.Time `gorm:"column:YWSCSJ" json:"YWSCSJ" form:"YWSCSJ"`
  1120. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1121. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1122. }
  1123. func (TM_DICT_BED) TableName() string {
  1124. return "TM_DICT_BED"
  1125. }
  1126. type TB_MZ_Patient_Information struct {
  1127. KH string `gorm:"column:KH" json:"KH" form:"KH"`
  1128. KLX string `gorm:"column:KLX" json:"KLX" form:"KLX"`
  1129. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1130. FKDQ string `gorm:"column:FKDQ" json:"FKDQ" form:"FKDQ"`
  1131. ZJHM string `gorm:"column:ZJHM" json:"ZJHM" form:"ZJHM"`
  1132. ZJLXDM string `gorm:"column:ZJLXDM" json:"ZJLXDM" form:"ZJLXDM"`
  1133. ZJLXMC string `gorm:"column:ZJLXMC" json:"ZJLXMC" form:"ZJLXMC"`
  1134. XM string `gorm:"column:XM" json:"XM" form:"XM"`
  1135. CSRQ string `gorm:"column:CSRQ" json:"CSRQ" form:"CSRQ"`
  1136. MZDM string `gorm:"column:MZDM" json:"MZDM" form:"MZDM"`
  1137. MZMC string `gorm:"column:MZMC" json:"MZMC" form:"MZMC"`
  1138. GJDM string `gorm:"column:GJDM" json:"GJDM" form:"GJDM"`
  1139. GJMC string `gorm:"column:GJMC" json:"GJMC" form:"GJMC"`
  1140. SJHM string `gorm:"column:SJHM" json:"SJHM" form:"SJHM"`
  1141. XBDM string `gorm:"column:XBDM" json:"XBDM" form:"XBDM"`
  1142. XBMC string `gorm:"column:XBMC" json:"XBMC" form:"XBMC"`
  1143. HZLXDM string `gorm:"column:HZLXDM" json:"HZLXDM" form:"HZLXDM"`
  1144. HZLXMC string `gorm:"column:HZLXMC" json:"HZLXMC" form:"HZLXMC"`
  1145. YWSCSJ time.Time `gorm:"column:YWSCSJ" json:"YWSCSJ" form:"YWSCSJ"`
  1146. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1147. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1148. }
  1149. func (TB_MZ_Patient_Information) TableName() string {
  1150. return "TB_MZ_Patient_Information"
  1151. }
  1152. type TB_HIS_MZ_Reg struct {
  1153. GHRQ string `gorm:"column:GHRQ" json:"GHRQ" form:"GHRQ"`
  1154. JZLSH string `gorm:"column:JZLSH" json:"JZLSH" form:"JZLSH"`
  1155. GTHBZ string `gorm:"column:GTHBZ" json:"GTHBZ" form:"GTHBZ"`
  1156. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1157. STFBH string `gorm:"column:STFBH" json:"STFBH" form:"STFBH"`
  1158. GTHSJ string `gorm:"column:GTHSJ" json:"GTHSJ" form:"GTHSJ"`
  1159. GHHX string `gorm:"column:GHHX" json:"GHHX" form:"GHHX"`
  1160. GHLB string `gorm:"column:GHLB" json:"GHLB" form:"GHLB"`
  1161. GHMC string `gorm:"column:GHMC" json:"GHMC" form:"GHMC"`
  1162. YLFYLYDM string `gorm:"column:YLFYLYDM" json:"YLFYLYDM" form:"YLFYLYDM"`
  1163. YLBXLBDM string `gorm:"column:YLBXLBDM" json:"YLBXLBDM" form:"YLBXLBDM"`
  1164. YBZHBZ string `gorm:"column:YBZHBZ" json:"YBZHBZ" form:"YBZHBZ"`
  1165. SSJYBZ string `gorm:"column:SSJYBZ" json:"SSJYBZ" form:"SSJYBZ"`
  1166. KSBM string `gorm:"column:KSBM" json:"KSBM" form:"KSBM"`
  1167. KSMC string `gorm:"column:KSMC" json:"KSMC" form:"KSMC"`
  1168. YSBM string `gorm:"column:YSBM" json:"YSBM" form:"YSBM"`
  1169. YSXM string `gorm:"column:YSXM" json:"YSXM" form:"YSXM"`
  1170. TXBZ string `gorm:"column:TXBZ" json:"TXBZ" form:"TXBZ"`
  1171. WDBZ string `gorm:"column:WDBZ" json:"WDBZ" form:"WDBZ"`
  1172. KH string `gorm:"column:KH" json:"KH" form:"KH"`
  1173. KLX string `gorm:"column:KLX" json:"KLX" form:"KLX"`
  1174. SFYY string `gorm:"column:SFYY" json:"SFYY" form:"SFYY"`
  1175. GHRCBS string `gorm:"column:GHRCBS" json:"GHRCBS" form:"GHRCBS"`
  1176. GHFY float64 `gorm:"column:GHFY" json:"GHFY" form:"GHFY"`
  1177. JMGHF float64 `gorm:"column:JMGHF" json:"JMGHF" form:"JMGHF"`
  1178. GHFXM string `gorm:"column:GHFXM" json:"GHFXM" form:"GHFXM"`
  1179. ZJFXM string `gorm:"column:ZJFXM" json:"ZJFXM" form:"ZJFXM"`
  1180. ZJF float64 `gorm:"column:ZJF" json:"ZJF" form:"ZJF"`
  1181. JMZJF float64 `gorm:"column:JMZJF" json:"JMZJF" form:"JMZJF"`
  1182. QTF string `gorm:"column:QTF" json:"QTF" form:"QTF"`
  1183. CZYBM string `gorm:"column:CZYBM" json:"CZYBM" form:"CZYBM"`
  1184. CZYXM string `gorm:"column:CZYXM" json:"CZYXM" form:"CZYXM"`
  1185. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1186. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1187. }
  1188. func (TB_HIS_MZ_Reg) TableName() string {
  1189. return "TB_HIS_MZ_Reg"
  1190. }
  1191. type TB_YL_MZ_Medical_Record struct {
  1192. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1193. JZLSH string `gorm:"column:JZLSH" json:"JZLSH" form:"JZLSH"`
  1194. KH string `gorm:"column:KH" json:"KH" form:"KH"`
  1195. KLX string `gorm:"column:KLX" json:"KLX" form:"KLX"`
  1196. MJZH string `gorm:"column:MJZH" json:"MJZH" form:"MJZH"`
  1197. HZXM string `gorm:"column:HZXM" json:"HZXM" form:"HZXM"`
  1198. NLS int64 `gorm:"column:NLS" json:"NLS" form:"NLS"`
  1199. JZLX string `gorm:"column:JZLX" json:"JZLX" form:"JZLX"`
  1200. CZBZ string `gorm:"column:CZBZ" json:"CZBZ" form:"CZBZ"`
  1201. SFTH string `gorm:"column:SFTH" json:"SFTH" form:"SFTH"`
  1202. YLBXLBDM string `gorm:"column:YLBXLBDM" json:"YLBXLBDM" form:"YLBXLBDM"`
  1203. YLFKFSDM string `gorm:"column:YLFKFSDM" json:"YLFKFSDM" form:"YLFKFSDM"`
  1204. TXBZ string `gorm:"column:TXBZ" json:"TXBZ" form:"TXBZ"`
  1205. YBZHBZ string `gorm:"column:YBZHBZ" json:"YBZHBZ" form:"YBZHBZ"`
  1206. WDBZ string `gorm:"column:WDBZ" json:"WDBZ" form:"WDBZ"`
  1207. SFSYZYZLJS string `gorm:"column:SFSYZYZLJS" json:"SFSYZYZLJS" form:"SFSYZYZLJS"`
  1208. ZYZLJSLB string `gorm:"column:ZYZLJSLB" json:"ZYZLJSLB" form:"ZYZLJSLB"`
  1209. SFSYZYZHLJS string `gorm:"column:SFSYZYZHLJS" json:"SFSYZYZHLJS" form:"SFSYZYZHLJS"`
  1210. JZKSBM string `gorm:"column:JZKSBM" json:"JZKSBM" form:"JZKSBM"`
  1211. JZKSMC string `gorm:"column:JZKSMC" json:"JZKSMC" form:"JZKSMC"`
  1212. JZKSRQ string `gorm:"column:JZKSRQ" json:"JZKSRQ" form:"JZKSRQ"`
  1213. ZZYSGH string `gorm:"column:ZZYSGH" json:"ZZYSGH" form:"ZZYSGH"`
  1214. ZZYSXM string `gorm:"column:ZZYSXM" json:"ZZYSXM" form:"ZZYSXM"`
  1215. BMLX string `gorm:"column:BMLX" json:"BMLX" form:"BMLX"`
  1216. JZZDBM string `gorm:"column:JZZDBM" json:"JZZDBM" form:"JZZDBM"`
  1217. JZZDSM string `gorm:"column:JZZDSM" json:"ZZDSM" form:"JZZDSM"`
  1218. JZZTDM string `gorm:"column:JZZTDM" json:"JZZTDM" form:"JZZTDM"`
  1219. JZZTMC string `gorm:"column:JZZTMC" json:"JZZTMC" form:"JZZTMC"`
  1220. JZJSSJ string `gorm:"column:JZJSSJ" json:"JZJSSJ" form:"JZJSSJ"`
  1221. ZS string `gorm:"column:ZS" json:"ZS" form:"ZS"`
  1222. ZZMS string `gorm:"column:ZZMS" json:"ZZMS" form:"ZZMS"`
  1223. YWSCSJ time.Time `gorm:"column:YWSCSJ" json:"YWSCSJ" form:"YWSCSJ"`
  1224. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1225. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1226. }
  1227. func (TB_YL_MZ_Medical_Record) TableName() string {
  1228. return "TB_YL_MZ_Medical_Record"
  1229. }
  1230. type TB_Diagnosis_Detail struct {
  1231. ZYZDLSH string `gorm:"column:ZYZDLSH" json:"ZYZDLSH" form:"ZYZDLSH"`
  1232. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1233. JZLSH string `gorm:"column:JZLSH" json:"JZLSH" form:"JZLSH"`
  1234. MZZYBZ string `gorm:"column:MZZYBZ" json:"MZZYBZ" form:"MZZYBZ"`
  1235. KH string `gorm:"column:KH" json:"KH" form:"KH"`
  1236. KLX string `gorm:"column:KLX" json:"KLX" form:"KLX"`
  1237. ZDLXQF string `gorm:"column:ZDLXQF" json:"ZDLXQF" form:"ZDLXQF"`
  1238. ZDLB string `gorm:"column:ZDLB" json:"ZDLB" form:"ZDLB"`
  1239. ZDSJ string `gorm:"column:ZDSJ" json:"ZDSJ" form:"ZDSJ"`
  1240. ZDBM string `gorm:"column:ZDBM" json:"ZDBM" form:"ZDBM"`
  1241. BMLX string `gorm:"column:BMLX" json:"BMLX" form:"BMLX"`
  1242. CYZDBZ string `gorm:"column:CYZDBZ" json:"CYZDBZ" form:"CYZDBZ"`
  1243. YZDBZ string `gorm:"column:YZDBZ" json:"YZDBZ" form:"YZDBZ"`
  1244. CRBBZ string `gorm:"column:CRBBZ" json:"CRBBZ" form:"CRBBZ"`
  1245. RYBQ string `gorm:"column:RYBQ" json:"RYBQ" form:"RYBQ"`
  1246. JLRQSJ time.Time `gorm:"column:JLRQSJ" json:"JLRQSJ" form:"JLRQSJ"`
  1247. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1248. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1249. }
  1250. func (TB_Diagnosis_Detail) TableName() string {
  1251. return "TB_Diagnosis_Detail"
  1252. }
  1253. type TB_STAT_YWL_Report struct {
  1254. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1255. KSBM string `gorm:"column:KSBM" json:"KSBM" form:"KSBM"`
  1256. YWSJ string `gorm:"column:YWSJ" json:"YWSJ" form:"YWSJ"`
  1257. MZRC int64 `gorm:"column:MZRC" json:"MZRC" form:"MZRC"`
  1258. JZRC int64 `gorm:"column:JZRC" json:"JZRC" form:"JZRC"`
  1259. TJRC int64 `gorm:"column:TJRC" json:"TJRC" form:"TJRC"`
  1260. RYRC int64 `gorm:"column:RYRC" json:"RYRC" form:"RYRC"`
  1261. CYRC int64 `gorm:"column:CYRC" json:"CYRC" form:"CYRC"`
  1262. CGRC int64 `gorm:"column:CGRC" json:"CGRC" form:"CGRC"`
  1263. RGBLS int64 `gorm:"column:RGBLS" json:"RGBLS" form:"RGBLS"`
  1264. ZYRS int64 `gorm:"column:ZYRS" json:"ZYRS" form:"ZYRS"`
  1265. SYCWS int64 `gorm:"column:SYCWS" json:"SYCWS" form:"SYCWS"`
  1266. BZCWS int64 `gorm:"column:BZCWS" json:"BZCWS" form:"BZCWS"`
  1267. SJSYCWS int64 `gorm:"column:SJSYCWS" json:"SJSYCWS" form:"SJSYCWS"`
  1268. KCS int64 `gorm:"column:KCS" json:"KCS" form:"KCS"`
  1269. KFTSCS int64 `gorm:"column:KFTSCS" json:"KFTSCS" form:"KFTSCS"`
  1270. JTBCS int64 `gorm:"column:JTBCS" json:"JTBCS" form:"JTBCS"`
  1271. SSLS int64 `gorm:"column:SSLS" json:"SSLS" form:"SSLS"`
  1272. MJZYLFY float64 `gorm:"column:MJZYLFY" json:"MJZYLFY" form:"MJZYLFY"`
  1273. ZYYLFY int64 `gorm:"column:ZYYLFY" json:"ZYYLFY" form:"ZYYLFY"`
  1274. MJZYPFY float64 `gorm:"column:MJZYPFY" json:"MJZYPFY" form:"MJZYPFY"`
  1275. ZYYPFY int64 `gorm:"column:ZYYPFY" json:"ZYYPFY" form:"ZYYPFY"`
  1276. MJZYBYLFY float64 `gorm:"column:MJZYBYLFY" json:"MJZYBYLFY" form:"MJZYBYLFY"`
  1277. ZYYBYLFY int64 `gorm:"column:ZYYBYLFY" json:"ZYYBYLFY" form:"ZYYBYLFY"`
  1278. MJZYBYPFY float64 `gorm:"column:MJZYBYPFY" json:"MJZYBYPFY" form:"MJZYBYPFY"`
  1279. ZYYBYPFY int64 `gorm:"column:ZYYBYPFY" json:"ZYYBYPFY" form:"ZYYBYPFY"`
  1280. ZYSJFSYS int64 `gorm:"column:ZYSJFSYS" json:"ZYSJFSYS" form:"ZYSJFSYS"`
  1281. CYYLSR int64 `gorm:"column:CYYLSR" json:"CYYLSR" form:"CYYLSR"`
  1282. CYYPSR int64 `gorm:"column:CYYPSR" json:"CYYPSR" form:"CYYPSR"`
  1283. CYYBYLSR int64 `gorm:"column:CYYBYLSR" json:"CYYBYLSR" form:"CYYBYLSR"`
  1284. CYYBYPSR int64 `gorm:"column:CYYBYPSR" json:"CYYBYPSR" form:"CYYBYPSR"`
  1285. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1286. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1287. }
  1288. func (TB_STAT_YWL_Report) TableName() string {
  1289. return "TB_STAT_YWL_Report"
  1290. }
  1291. type TB_CIS_Prescription struct {
  1292. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1293. CYH string `gorm:"column:CYH" json:"CYH" form:"CYH"`
  1294. JZLSH string `gorm:"column:JZLSH" json:"JZLSH" form:"JZLSH"`
  1295. KH string `gorm:"column:KH" json:"KH" form:"KH"`
  1296. KLX string `gorm:"column:KLX" json:"KLX" form:"KLX"`
  1297. CFLX string `gorm:"column:CFLX" json:"CFLX" form:"CFLX"`
  1298. YPLX string `gorm:"column:YPLX" json:"YPLX" form:"YPLX"`
  1299. ZYYPCFLB string `gorm:"column:ZYYPCFLB" json:"ZYYPCFLB" form:"ZYYPCFLB"`
  1300. CFJS string `gorm:"column:CFJS" json:"CFJS" form:"CFJS"`
  1301. JZKSDM string `gorm:"column:JZKSDM" json:"JZKSDM" form:"JZKSDM"`
  1302. JZKSMC string `gorm:"column:JZKSMC" json:"JZKSMC" form:"JZKSMC"`
  1303. KFYS string `gorm:"column:KFYS" json:"KFYS" form:"KFYS"`
  1304. KFYSXM string `gorm:"column:KFYSXM" json:"KFYSXM" form:"KFYSXM"`
  1305. KFRQ string `gorm:"column:KFRQ" json:"KFRQ" form:"KFRQ"`
  1306. CFLRSJ string `gorm:"column:CFLRSJ" json:"CFLRSJ" form:"CFLRSJ"`
  1307. SGCFBZ string `gorm:"column:SGCFBZ" json:"SGCFBZ" form:"SGCFBZ"`
  1308. CFYPJE float64 `gorm:"column:CFYPJE" json:"CFYPJE" form:"CFYPJE"`
  1309. TFBZ string `gorm:"column:TFBZ" json:"TFBZ" form:"TFBZ"`
  1310. XYZDDM string `gorm:"column:XYZDDM" json:"XYZDDM" form:"XYZDDM"`
  1311. XYZDMC string `gorm:"column:XYZDMC" json:"XYZDMC" form:"XYZDMC"`
  1312. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1313. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1314. }
  1315. func (TB_CIS_Prescription) TableName() string {
  1316. return "TB_CIS_Prescription"
  1317. }
  1318. type TB_CIS_Prescription_Detail struct {
  1319. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1320. CYH string `gorm:"column:CYH" json:"CYH" form:"CYH"`
  1321. CFMXH string `gorm:"column:CFMXH" json:"CFMXH" form:"CFMXH"`
  1322. JZLSH string `gorm:"column:JZLSH" json:"JZLSH" form:"JZLSH"`
  1323. XMBM string `gorm:"column:XMBM" json:"XMBM" form:"XMBM"`
  1324. XMBMYB string `gorm:"column:XMBMYB" json:"XMBMYB" form:"XMBMYB"`
  1325. XMMC string `gorm:"column:XMMC" json:"XMMC" form:"XMMC"`
  1326. XMSL float64 `gorm:"column:XMSL" json:"XMSL" form:"XMSL"`
  1327. XMDW string `gorm:"column:XMDW" json:"XMDW" form:"XMDW"`
  1328. XMDJ float64 `gorm:"column:XMDJ" json:"XMDJ" form:"XMDJ"`
  1329. XMJE float64 `gorm:"column:XMJE" json:"XMJE" form:"XMJE"`
  1330. XMLB string `gorm:"column:XMLB" json:"XMLB" form:"XMLB"`
  1331. YWFLDM string `gorm:"column:YWFLDM" json:"YWFLDM" form:"YWFLDM"`
  1332. SFJJ string `gorm:"column:SFJJ" json:"SFJJ" form:"SFJJ"`
  1333. SFPS string `gorm:"column:SFPS" json:"SFPS" form:"SFPS"`
  1334. YPGG string `gorm:"column:YPGG" json:"YPGG" form:"YPGG"`
  1335. SCPH string `gorm:"column:SCPH" json:"SCPH" form:"SCPH"`
  1336. YXQZ string `gorm:"column:YXQZ" json:"YXQZ" form:"YXQZ"`
  1337. SYPCDM string `gorm:"column:SYPCDM" json:"SYPCDM" form:"SYPCDM"`
  1338. SYPC string `gorm:"column:SYPC" json:"SYPC" form:"SYPC"`
  1339. JL float64 `gorm:"column:JL" json:"JL" form:"JL"`
  1340. DW string `gorm:"column:DW" json:"DW" form:"DW"`
  1341. MCSL float64 `gorm:"column:MCSL" json:"MCSL" form:"MCSL"`
  1342. MCDW string `gorm:"column:MCDW" json:"MCDW" form:"MCDW"`
  1343. YF string `gorm:"column:YF" json:"YF" form:"YF"`
  1344. YPYF string `gorm:"column:YPYF" json:"YPYF" form:"YPYF"`
  1345. YYTS int64 `gorm:"column:YYTS" json:"YYTS" form:"YYTS"`
  1346. YWSYZJL float64 `gorm:"column:YWSYZJL" json:"YWSYZJL" form:"YWSYZJL"`
  1347. YWSYZJLDW string `gorm:"column:YWSYZJLDW" json:"YWSYZJLDW" form:"YWSYZJLDW"`
  1348. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1349. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1350. }
  1351. func (TB_CIS_Prescription_Detail) TableName() string {
  1352. return "TB_CIS_Prescription_Detail"
  1353. }
  1354. type TB_HIS_MZ_Charge struct {
  1355. STFRQ string `gorm:"column:STFRQ" json:"STFRQ" form:"STFRQ"`
  1356. STFBH string `gorm:"column:STFBH" json:"STFBH" form:"STFBH"`
  1357. STFBZ string `gorm:"column:STFBZ" json:"STFBZ" form:"STFBZ"`
  1358. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1359. GHBM string `gorm:"column:GHBM" json:"GHBM" form:"GHBM"`
  1360. KH string `gorm:"column:KH" json:"KH" form:"KH"`
  1361. KLX string `gorm:"column:KLX" json:"KLX" form:"KLX"`
  1362. FPH string `gorm:"column:FPH" json:"FPH" form:"FPH"`
  1363. YLFKFSDM string `gorm:"column:YLFKFSDM" json:"YLFKFSDM" form:"YLFKFSDM"`
  1364. YLBXLBDM string `gorm:"column:YLBXLBDM" json:"YLBXLBDM" form:"YLBXLBDM"`
  1365. YBZHBZ string `gorm:"column:YBZHBZ" json:"YBZHBZ" form:"YBZHBZ"`
  1366. SSJYBZ string `gorm:"column:SSJYBZ" json:"SSJYBZ" form:"SSJYBZ"`
  1367. ZLLX string `gorm:"column:ZLLX" json:"ZLLX" form:"ZLLX"`
  1368. WDBZ string `gorm:"column:WDBZ" json:"WDBZ" form:"WDBZ"`
  1369. STFSJ string `gorm:"column:STFSJ" json:"STFSJ" form:"STFSJ"`
  1370. STFZE float64 `gorm:"column:STFZE" json:"STFZE" form:"STFZE"`
  1371. SSJE float64 `gorm:"column:SSJE" json:"SSJE" form:"SSJE"`
  1372. YBFWWZF float64 `gorm:"column:YBFWWZF" json:"YBFWWZF" form:"YBFWWZF"`
  1373. TXFYE string `gorm:"column:TXFYE" json:"TXFYE" form:"TXFYE"`
  1374. TXYF string `gorm:"column:TXYF" json:"TXYF" form:"TXYF"`
  1375. GHF string `gorm:"column:GHF" json:"GHF" form:"GHF"`
  1376. ZLF string `gorm:"column:ZLF" json:"ZLF" form:"ZLF"`
  1377. ZHF float64 `gorm:"column:ZHF" json:"ZHF" form:"ZHF"`
  1378. JCF float64 `gorm:"column:JCF" json:"JCF" form:"JCF"`
  1379. SSF float64 `gorm:"column:SSF" json:"SSF" form:"SSF"`
  1380. WSCLF float64 `gorm:"column:WSCLF" json:"WSCLF" form:"WSCLF"`
  1381. CWF float64 `gorm:"column:CWF" json:"CWF" form:"CWF"`
  1382. HLF string `gorm:"column:HLF" json:"HLF" form:"HLF"`
  1383. YSFWF string `gorm:"column:YSFWF" json:"YSFWF" form:"YSFWF"`
  1384. YBZLF string `gorm:"column:YBZLF" json:"YBZLF" form:"YBZLF"`
  1385. HYF float64 `gorm:"column:HYF" json:"HYF" form:"HYF"`
  1386. TSF string `gorm:"column:TSF" json:"TSF" form:"TSF"`
  1387. SPF string `gorm:"column:SPF" json:"SPF" form:"SPF"`
  1388. XYF float64 `gorm:"column:XYF" json:"XYF" form:"XYF"`
  1389. YHJE float64 `gorm:"column:YHJE" json:"YHJE" form:"YHJE"`
  1390. ZFJE float64 `gorm:"column:ZFJE" json:"ZFJE" form:"ZFJE"`
  1391. YBJZ float64 `gorm:"column:YBJZ" json:"YBJZ" form:"YBJZ"`
  1392. YBJJ float64 `gorm:"column:YBJJ" json:"YBJJ" form:"YBJJ"`
  1393. YBZE float64 `gorm:"column:YBZE" json:"YBZE" form:"YBZE"`
  1394. YBZF float64 `gorm:"column:YBZF" json:"YBZF" form:"YBZF"`
  1395. ZCYF float64 `gorm:"column:ZCYF" json:"ZCYF" form:"ZCYF"`
  1396. ZYZJF string `gorm:"column:ZYZJF" json:"ZYZJF" form:"ZYZJF"`
  1397. ZCAF string `gorm:"column:ZCAF" json:"ZCAF" form:"ZCAF"`
  1398. QTF float64 `gorm:"column:QTF" json:"QTF" form:"QTF"`
  1399. CFZS string `gorm:"column:CFZS" json:"CFZS" form:"CFZS"`
  1400. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1401. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1402. }
  1403. func (TB_HIS_MZ_Charge) TableName() string {
  1404. return "TB_HIS_MZ_Charge"
  1405. }
  1406. type TB_HIS_MZ_Fee_Detail struct {
  1407. SFMXID string `gorm:"column:SFMXID" json:"SFMXID" form:"SFMXID"`
  1408. TFBZ string `gorm:"column:TFBZ" json:"TFBZ" form:"TFBZ"`
  1409. YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
  1410. JZLSH string `gorm:"column:JZLSH" json:"JZLSH" form:"JZLSH"`
  1411. STFBH string `gorm:"column:STFBH" json:"STFBH" form:"STFBH"`
  1412. KH string `gorm:"column:KH" json:"KH" form:"KH"`
  1413. KLX string `gorm:"column:KLX" json:"KLX" form:"KLX"`
  1414. ZLLX string `gorm:"column:ZLLX" json:"ZLLX" form:"ZLLX"`
  1415. YLFKFSDM string `gorm:"column:YLFKFSDM" json:"YLFKFSDM" form:"YLFKFSDM"`
  1416. FPH string `gorm:"column:FPH" json:"FPH" form:"FPH"`
  1417. STFSJ string `gorm:"column:STFSJ" json:"STFSJ" form:"STFSJ"`
  1418. MXFYLB string `gorm:"column:MXFYLB" json:"MXFYLB" form:"MXFYLB"`
  1419. MXXMBM string `gorm:"column:MXXMBM" json:"MXXMBM" form:"MXXMBM"`
  1420. MXXMBMYB string `gorm:"column:MXXMBMYB" json:"MXXMBMYB" form:"MXXMBMYB"`
  1421. MXXMMC string `gorm:"column:MXXMMC" json:"MXXMMC" form:"MXXMMC"`
  1422. MXXMDW string `gorm:"column:MXXMDW" json:"MXXMDW" form:"MXXMDW"`
  1423. MXXMDJ float64 `gorm:"column:MXXMDJ" json:"MXXMDJ" form:"MXXMDJ"`
  1424. MXXMSL float64 `gorm:"column:MXXMSL" json:"MXXMSL" form:"MXXMSL"`
  1425. MXXMJE float64 `gorm:"column:MXXMJE" json:"MXXMJE" form:"MXXMJE"`
  1426. KDKSBM string `gorm:"column:KDKSBM" json:"KDKSBM" form:"KDKSBM"`
  1427. KDKSMC string `gorm:"column:KDKSMC" json:"KDKSMC" form:"KDKSMC"`
  1428. KDRGH string `gorm:"column:KDRGH" json:"KDRGH" form:"KDRGH"`
  1429. KDRXM string `gorm:"column:KDRXM" json:"KDRXM" form:"KDRXM"`
  1430. ZXKSBM string `gorm:"column:ZXKSBM" json:"ZXKSBM" form:"ZXKSBM"`
  1431. ZXKSMC string `gorm:"column:ZXKSMC" json:"ZXKSMC" form:"ZXKSMC"`
  1432. SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
  1433. XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
  1434. }
  1435. func (TB_HIS_MZ_Fee_Detail) TableName() string {
  1436. return "TB_HIS_MZ_Fee_Detail"
  1437. }