target_data.go 82KB

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