dialysis.go 99KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234
  1. package models
  2. type SchedualPatient struct {
  3. ID int64 `gorm:"column:id" json:"id" form:"id"`
  4. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  5. UserId int64 `gorm:"column:user_id" json:"user_id" form:"user_id"`
  6. PatientType int64 `gorm:"column:patient_type" json:"patient_type" form:"patient_type"`
  7. Avatar string `gorm:"column:avatar" json:"avatar" form:"avatar"`
  8. DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no" form:"dialysis_no"`
  9. AdmissionNumber string `gorm:"column:admission_number" json:"admission_number" form:"admission_number"`
  10. Source int64 `gorm:"column:source" json:"source" form:"source"`
  11. Lapseto int64 `gorm:"column:lapseto" json:"lapseto" form:"lapseto"`
  12. PartitionId int64 `gorm:"column:partition_id" json:"partition_id" form:"partition_id"`
  13. BedId int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
  14. Name string `gorm:"column:name" json:"name" form:"name"`
  15. Alias string `gorm:"column:alias" json:"alias" form:"alias"`
  16. Gender int64 `gorm:"column:gender" json:"gender" form:"gender"`
  17. Nation string `gorm:"column:nation" json:"nation" form:"nation"`
  18. NativePlace string `gorm:"column:native_place" json:"native_place" form:"native_place"`
  19. MaritalStatus int64 `gorm:"column:marital_status" json:"marital_status" form:"marital_status"`
  20. IdCardNo string `gorm:"column:id_card_no" json:"id_card_no" form:"id_card_no"`
  21. Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
  22. ReimbursementWayId int64 `gorm:"column:reimbursement_way_id" json:"reimbursement_way_id" form:"reimbursement_way_id"`
  23. HealthCareType int64 `gorm:"column:health_care_type" json:"health_care_type" form:"health_care_type"`
  24. HealthCareNo string `gorm:"column:health_care_no" json:"health_care_no" form:"health_care_no"`
  25. HealthCareDueDate int64 `gorm:"column:health_care_due_date" json:"health_care_due_date" form:"health_care_due_date"`
  26. Height int64 `gorm:"column:height" json:"height" form:"height"`
  27. BloodType int64 `gorm:"column:blood_type" json:"blood_type" form:"blood_type"`
  28. Rh int64 `gorm:"column:rh" json:"rh" form:"rh"`
  29. HealthCareDueAlertDate int64 `gorm:"column:health_care_due_alert_date" json:"health_care_due_alert_date" form:"health_care_due_alert_date"`
  30. EducationLevel int64 `gorm:"column:education_level" json:"education_level" form:"education_level"`
  31. Profession int64 `gorm:"column:profession" json:"profession" form:"profession"`
  32. Phone string `gorm:"column:phone" json:"phone" form:"phone"`
  33. HomeTelephone string `gorm:"column:home_telephone" json:"home_telephone" form:"home_telephone"`
  34. RelativePhone string `gorm:"column:relative_phone" json:"relative_phone" form:"relative_phone"`
  35. RelativeRelations string `gorm:"column:relative_relations" json:"relative_relations" form:"relative_relations"`
  36. HomeAddress string `gorm:"column:home_address" json:"home_address" form:"home_address"`
  37. WorkUnit string `gorm:"column:work_unit" json:"work_unit" form:"work_unit"`
  38. UnitAddress string `gorm:"column:unit_address" json:"unit_address" form:"unit_address"`
  39. Children int64 `gorm:"column:children" json:"children" form:"children"`
  40. ReceivingDate int64 `gorm:"column:receiving_date" json:"receiving_date" form:"receiving_date"`
  41. IsHospitalFirstDialysis int64 `gorm:"column:is_hospital_first_dialysis" json:"is_hospital_first_dialysis" form:"is_hospital_first_dialysis"`
  42. FirstDialysisDate int64 `gorm:"column:first_dialysis_date" json:"first_dialysis_date" form:"first_dialysis_date"`
  43. FirstDialysisHospital string `gorm:"column:first_dialysis_hospital" json:"first_dialysis_hospital" form:"first_dialysis_hospital"`
  44. InductionPeriod int64 `gorm:"column:induction_period" json:"induction_period" form:"induction_period"`
  45. InitialDialysis int64 `gorm:"column:initial_dialysis" json:"initial_dialysis" form:"initial_dialysis"`
  46. TotalDialysis int64 `gorm:"column:total_dialysis" json:"total_dialysis" form:"total_dialysis"`
  47. AttendingDoctorId int64 `gorm:"column:attending_doctor_id" json:"attending_doctor_id" form:"attending_doctor_id"`
  48. HeadNurseId int64 `gorm:"column:head_nurse_id" json:"head_nurse_id" form:"head_nurse_id"`
  49. Evaluate string `gorm:"column:evaluate" json:"evaluate" form:"evaluate"`
  50. Diagnose string `gorm:"column:diagnose" json:"diagnose" form:"diagnose"`
  51. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  52. RegistrarsId int64 `gorm:"column:registrars_id" json:"registrars_id" form:"registrars_id"`
  53. Registrars string `gorm:"column:registrars" json:"registrars" form:"registrars"`
  54. QrCode string `gorm:"column:qr_code" json:"qr_code" form:"qr_code"`
  55. BindingState int64 `gorm:"column:binding_state" json:"binding_state" form:"binding_state"`
  56. PatientComplains string `gorm:"column:patient_complains" json:"patient_complains"` // 主诉
  57. PresentHistory string `gorm:"column:present_history" json:"present_history"` // 现病史
  58. PastHistory string `gorm:"column:past_history" json:"past_history"` // 既往史
  59. Temperature float64 `gorm:"column:temperature" json:"temperature"` // 体格检查-体温
  60. Pulse int64 `gorm:"column:pulse" json:"pulse"` // 体格检查-脉搏
  61. Respiratory int64 `gorm:"column:respiratory" json:"respiratory"` // 体格检查-呼吸频率
  62. SBP int64 `gorm:"column:sbp" json:"sbp"` // 体格检查-收缩压
  63. DBP int64 `gorm:"column:dbp" json:"dbp"` // 体格检查-舒张压
  64. Age int64 `gorm:"column:age" json:"age"`
  65. Status int64 `gorm:"column:status" json:"status" form:"status"`
  66. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  67. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
  68. PredialysisEvaluation PredialysisEvaluation `json:"PredialysisEvaluation" gorm:"ForeignKey:PatientId"`
  69. AssessmentAfterDislysis AssessmentAfterDislysis `gorm:"ForeignKey:PatientId"`
  70. MonitoringRecord []MonitoringRecord `gorm:"ForeignKey:PatientId"`
  71. IsOpenRemind int64 `gorm:"column:is_open_remind" json:"is_open_remind"`
  72. DialysisAge int64 `gorm:"column:dialysis_age" json:"dialysis_age" form:"dialysis_age"`
  73. ExpenseKind int64 `gorm:"column:expense_kind" json:"expense_kind" form:"expense_kind"`
  74. TellPhone string `gorm:"column:tell_phone" json:"tell_phone" form:"tell_phone"`
  75. FirstTreatmentDate int64 `gorm:"column:first_treatment_date" json:"first_treatment_date" form:"first_treatment_date"`
  76. ContactName string `gorm:"column:contact_name" json:"contact_name" form:"contact_name"`
  77. UserSysBeforeCount int64 `gorm:"column:user_sys_before_count" json:"user_sys_before_count" form:"user_sys_before_count"`
  78. SchRemark string `gorm:"column:sch_remark" json:"sch_remark" form:"sch_remark"`
  79. }
  80. func (SchedualPatient) TableName() string {
  81. return "xt_patients"
  82. }
  83. type SchedualPatient2 struct {
  84. ID int64 `gorm:"column:id" json:"id" form:"id"`
  85. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  86. UserId int64 `gorm:"column:user_id" json:"user_id" form:"user_id"`
  87. PatientType int64 `gorm:"column:patient_type" json:"patient_type" form:"patient_type"`
  88. Avatar string `gorm:"column:avatar" json:"avatar" form:"avatar"`
  89. DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no" form:"dialysis_no"`
  90. AdmissionNumber string `gorm:"column:admission_number" json:"admission_number" form:"admission_number"`
  91. Source int64 `gorm:"column:source" json:"source" form:"source"`
  92. Lapseto int64 `gorm:"column:lapseto" json:"lapseto" form:"lapseto"`
  93. PartitionId int64 `gorm:"column:partition_id" json:"partition_id" form:"partition_id"`
  94. BedId int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
  95. Name string `gorm:"column:name" json:"name" form:"name"`
  96. Alias string `gorm:"column:alias" json:"alias" form:"alias"`
  97. Gender int64 `gorm:"column:gender" json:"gender" form:"gender"`
  98. Nation string `gorm:"column:nation" json:"nation" form:"nation"`
  99. NativePlace string `gorm:"column:native_place" json:"native_place" form:"native_place"`
  100. MaritalStatus int64 `gorm:"column:marital_status" json:"marital_status" form:"marital_status"`
  101. IdCardNo string `gorm:"column:id_card_no" json:"id_card_no" form:"id_card_no"`
  102. Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
  103. ReimbursementWayId int64 `gorm:"column:reimbursement_way_id" json:"reimbursement_way_id" form:"reimbursement_way_id"`
  104. HealthCareType int64 `gorm:"column:health_care_type" json:"health_care_type" form:"health_care_type"`
  105. HealthCareNo string `gorm:"column:health_care_no" json:"health_care_no" form:"health_care_no"`
  106. HealthCareDueDate int64 `gorm:"column:health_care_due_date" json:"health_care_due_date" form:"health_care_due_date"`
  107. Height int64 `gorm:"column:height" json:"height" form:"height"`
  108. BloodType int64 `gorm:"column:blood_type" json:"blood_type" form:"blood_type"`
  109. Rh int64 `gorm:"column:rh" json:"rh" form:"rh"`
  110. HealthCareDueAlertDate int64 `gorm:"column:health_care_due_alert_date" json:"health_care_due_alert_date" form:"health_care_due_alert_date"`
  111. EducationLevel int64 `gorm:"column:education_level" json:"education_level" form:"education_level"`
  112. Profession int64 `gorm:"column:profession" json:"profession" form:"profession"`
  113. Phone string `gorm:"column:phone" json:"phone" form:"phone"`
  114. HomeTelephone string `gorm:"column:home_telephone" json:"home_telephone" form:"home_telephone"`
  115. RelativePhone string `gorm:"column:relative_phone" json:"relative_phone" form:"relative_phone"`
  116. RelativeRelations string `gorm:"column:relative_relations" json:"relative_relations" form:"relative_relations"`
  117. HomeAddress string `gorm:"column:home_address" json:"home_address" form:"home_address"`
  118. WorkUnit string `gorm:"column:work_unit" json:"work_unit" form:"work_unit"`
  119. UnitAddress string `gorm:"column:unit_address" json:"unit_address" form:"unit_address"`
  120. Children int64 `gorm:"column:children" json:"children" form:"children"`
  121. ReceivingDate int64 `gorm:"column:receiving_date" json:"receiving_date" form:"receiving_date"`
  122. IsHospitalFirstDialysis int64 `gorm:"column:is_hospital_first_dialysis" json:"is_hospital_first_dialysis" form:"is_hospital_first_dialysis"`
  123. FirstDialysisDate int64 `gorm:"column:first_dialysis_date" json:"first_dialysis_date" form:"first_dialysis_date"`
  124. FirstDialysisHospital string `gorm:"column:first_dialysis_hospital" json:"first_dialysis_hospital" form:"first_dialysis_hospital"`
  125. InductionPeriod int64 `gorm:"column:induction_period" json:"induction_period" form:"induction_period"`
  126. InitialDialysis int64 `gorm:"column:initial_dialysis" json:"initial_dialysis" form:"initial_dialysis"`
  127. TotalDialysis int64 `gorm:"column:total_dialysis" json:"total_dialysis" form:"total_dialysis"`
  128. AttendingDoctorId int64 `gorm:"column:attending_doctor_id" json:"attending_doctor_id" form:"attending_doctor_id"`
  129. HeadNurseId int64 `gorm:"column:head_nurse_id" json:"head_nurse_id" form:"head_nurse_id"`
  130. Evaluate string `gorm:"column:evaluate" json:"evaluate" form:"evaluate"`
  131. Diagnose string `gorm:"column:diagnose" json:"diagnose" form:"diagnose"`
  132. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  133. RegistrarsId int64 `gorm:"column:registrars_id" json:"registrars_id" form:"registrars_id"`
  134. Registrars string `gorm:"column:registrars" json:"registrars" form:"registrars"`
  135. QrCode string `gorm:"column:qr_code" json:"qr_code" form:"qr_code"`
  136. BindingState int64 `gorm:"column:binding_state" json:"binding_state" form:"binding_state"`
  137. PatientComplains string `gorm:"column:patient_complains" json:"patient_complains"` // 主诉
  138. PresentHistory string `gorm:"column:present_history" json:"present_history"` // 现病史
  139. PastHistory string `gorm:"column:past_history" json:"past_history"` // 既往史
  140. Temperature float64 `gorm:"column:temperature" json:"temperature"` // 体格检查-体温
  141. Pulse int64 `gorm:"column:pulse" json:"pulse"` // 体格检查-脉搏
  142. Respiratory int64 `gorm:"column:respiratory" json:"respiratory"` // 体格检查-呼吸频率
  143. SBP int64 `gorm:"column:sbp" json:"sbp"` // 体格检查-收缩压
  144. DBP int64 `gorm:"column:dbp" json:"dbp"` // 体格检查-舒张压
  145. Status int64 `gorm:"column:status" json:"status" form:"status"`
  146. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  147. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
  148. DialysisSchedule DialysisSchedule `gorm:"ForeignKey:PatientId"`
  149. InfectiousDiseases []InfectiousDiseases `gorm:"ForeignKey:PatientId"`
  150. Age int64 `gorm:"column:age" json:"age"`
  151. IsOpenRemind int64 `gorm:"column:is_open_remind" json:"is_open_remind"`
  152. DialysisAge int64 `gorm:"column:dialysis_age" json:"dialysis_age" form:"dialysis_age"`
  153. ExpenseKind int64 `gorm:"column:expense_kind" json:"expense_kind" form:"expense_kind"`
  154. TellPhone string `gorm:"column:tell_phone" json:"tell_phone" form:"tell_phone"`
  155. FirstTreatmentDate int64 `gorm:"column:first_treatment_date" json:"first_treatment_date" form:"first_treatment_date"`
  156. ContactName string `gorm:"column:contact_name" json:"contact_name" form:"contact_name"`
  157. UserSysBeforeCount int64 `gorm:"column:user_sys_before_count" json:"user_sys_before_count" form:"user_sys_before_count"`
  158. SchRemark string `gorm:"column:sch_remark" json:"sch_remark" form:"sch_remark"`
  159. HospitalFirstDialysisDate int64 `gorm:"column:hospital_first_dialysis_date" json:"hospital_first_dialysis_date" form:"hospital_first_dialysis_date"`
  160. }
  161. func (SchedualPatient2) TableName() string {
  162. return "xt_patients"
  163. }
  164. type DialysisSchedule struct {
  165. ID int64 `gorm:"column:id" json:"id" form:"id"`
  166. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  167. PartitionId int64 `gorm:"column:partition_id" json:"partition_id" form:"partition_id"`
  168. BedId int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
  169. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  170. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date" form:"schedule_date"`
  171. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type" form:"schedule_type"`
  172. ScheduleWeek int64 `gorm:"column:schedule_week" json:"schedule_week" form:"schedule_week"`
  173. ModeId int64 `gorm:"column:mode_id" json:"mode_id" form:"mode_id"`
  174. Status int64 `gorm:"column:status" json:"status" form:"status"`
  175. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  176. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
  177. MonitorPatients *MonitorPatients `gorm:"ForeignKey:PatientId" json:"patient"`
  178. DeviceNumber *DeviceNumber `gorm:"ForeignKey:BedId" json:"device_number"`
  179. DeviceZone *DeviceZone `gorm:"ForeignKey:PartitionId" json:"device_zone"`
  180. TreatmentMode *TreatmentMode `gorm:"ForeignKey:ModeId" json:"treatment_mode"`
  181. DialysisOrder *MonitorDialysisOrder `gorm:"ForeignKey:DialysisDate,PatientId;AssociationForeignKey:ScheduleDate,PatientId" json:"dialysis_order"`
  182. Prescription *DialysisPrescription `gorm:"ForeignKey:RecordDate,PatientId;AssociationForeignKey:ScheduleDate,PatientId" json:"prescription"`
  183. AssessmentBeforeDislysis *PredialysisEvaluation `gorm:"ForeignKey:AssessmentDate,PatientId;AssociationForeignKey:ScheduleDate,PatientId" json:"assessment_before_dislysis"`
  184. AssessmentAfterDislysis *AssessmentAfterDislysis `gorm:"ForeignKey:AssessmentDate,PatientId;AssociationForeignKey:ScheduleDate,PatientId" json:"assessment_after_dislysis"`
  185. MonitoringRecord []*MonitoringRecord `gorm:"ForeignKey:MonitoringDate,PatientId;AssociationForeignKey:ScheduleDate,PatientId" json:"monitoring_record"`
  186. //Patient string `gorm:"-" json:"patient" form:"patient"`
  187. //SchedualPatient SchedualPatient `gorm:"ForeignKey:PatientId"`
  188. //DeviceNumber DeviceNumber `gorm:"ForeignKey:BedId"`
  189. //DeviceZone DeviceZone `gorm:"ForeignKey:PartitionId"`
  190. //TreatmentMode TreatmentMode `gorm:"ForeignKey:ModeId"`
  191. }
  192. type DialysisScheduleOne struct {
  193. ID int64 `gorm:"column:id" json:"id" form:"id"`
  194. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  195. PartitionId int64 `gorm:"column:partition_id" json:"partition_id" form:"partition_id"`
  196. BedId int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
  197. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  198. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date" form:"schedule_date"`
  199. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type" form:"schedule_type"`
  200. ScheduleWeek int64 `gorm:"column:schedule_week" json:"schedule_week" form:"schedule_week"`
  201. ModeId int64 `gorm:"column:mode_id" json:"mode_id" form:"mode_id"`
  202. Status int64 `gorm:"column:status" json:"status" form:"status"`
  203. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  204. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
  205. MonitorPatients MonitorPatients `gorm:"ForeignKey:PatientId" json:"patient"`
  206. DeviceNumber DeviceNumber `gorm:"ForeignKey:BedId" json:"device_number"`
  207. DeviceZone DeviceZone `gorm:"ForeignKey:PartitionId" json:"device_zone"`
  208. TreatmentMode TreatmentMode `gorm:"ForeignKey:ModeId" json:"treatment_mode"`
  209. DialysisOrder MonitorDialysisOrder `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dialysis_order"`
  210. Prescription DialysisPrescription `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"prescription"`
  211. AssessmentBeforeDislysis PredialysisEvaluation `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"assessment_before_dislysis"`
  212. AssessmentAfterDislysis AssessmentAfterDislysis `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"assessment_after_dislysis"`
  213. MonitoringRecord []MonitoringRecord `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"monitoring_record"`
  214. //Patient string `gorm:"-" json:"patient" form:"patient"`
  215. //SchedualPatient SchedualPatient `gorm:"ForeignKey:PatientId"`
  216. //DeviceNumber DeviceNumber `gorm:"ForeignKey:BedId"`
  217. //DeviceZone DeviceZone `gorm:"ForeignKey:PartitionId"`
  218. //TreatmentMode TreatmentMode `gorm:"ForeignKey:ModeId"`
  219. }
  220. func (DialysisSchedule) TableName() string {
  221. return "xt_schedule"
  222. }
  223. type PredialysisEvaluation struct {
  224. ID int64 `gorm:"column:id" json:"id"`
  225. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  226. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  227. AssessmentDate int64 `gorm:"column:assessment_date" json:"assessment_date"`
  228. DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id"`
  229. Temperature float64 `gorm:"column:temperature" json:"temperature"`
  230. PulseFrequency float64 `gorm:"column:pulse_frequency" json:"pulse_frequency"`
  231. BreathingRate string `gorm:"column:breathing_rate" json:"breathing_rate"`
  232. SystolicBloodPressure float64 `gorm:"column:systolic_blood_pressure" json:"systolic_blood_pressure"`
  233. DiastolicBloodPressure float64 `gorm:"column:diastolic_blood_pressure" json:"diastolic_blood_pressure"`
  234. BloodPressureType int64 `gorm:"column:blood_pressure_type" json:"blood_pressure_type"`
  235. DryWeight float64 `gorm:"column:dry_weight" json:"dry_weight"`
  236. WeightAfterLastTransparency float64 `gorm:"column:weight_after_last_transparency" json:"weight_after_last_transparency"`
  237. WeighingWay string `gorm:"column:weighing_way" json:"weighing_way"`
  238. WeighingBefore float64 `gorm:"column:weighing_before" json:"weighing_before"`
  239. AdditionalWeight float64 `gorm:"column:additional_weight" json:"additional_weight"`
  240. WeightBefore float64 `gorm:"column:weight_before" json:"weight_before"`
  241. WeightGain float64 `gorm:"column:weight_gain" json:"weight_gain"`
  242. PreloadedDewatering float64 `gorm:"column:preloaded_dewatering" json:"preloaded_dewatering"`
  243. UltrafiltrationAmount float64 `gorm:"column:ultrafiltration_amount" json:"ultrafiltration_amount"`
  244. DialysisInterphase string `gorm:"column:dialysis_interphase" json:"dialysis_interphase"`
  245. LastPostDialysis string `gorm:"column:last_post_dialysis" json:"last_post_dialysis"`
  246. SymptomBeforeDialysis string `gorm:"column:symptom_before_dialysis" json:"symptom_before_dialysis"`
  247. InternalFistula string `gorm:"column:internal_fistula" json:"internal_fistula"`
  248. InternalFistulaSkin string `gorm:"column:internal_fistula_skin" json:"internal_fistula_skin"`
  249. Catheter string `gorm:"column:catheter" json:"catheter"`
  250. CatheterBend int `gorm:"column:catheter_bend" json:"catheter_bend"`
  251. Complication string `gorm:"column:complication" json:"complication"`
  252. Evaluator int64 `gorm:"column:evaluator" json:"evaluator"`
  253. Creater int64 `gorm:"column:creater" json:"creater"`
  254. Remark string `gorm:"column:remark" json:"remark"`
  255. Status int64 `gorm:"column:status" json:"status"`
  256. CreatedTime int64 `gorm:"column:created_time" json:"created_time"`
  257. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time"`
  258. Modifier int64 `gorm:"column:modifier" json:"modifier"`
  259. BloodAccessPartId string `gorm:"column:blood_access_part_id" json:"blood_access_part_id"`
  260. BloodAccessPartOperaId int64 `gorm:"column:blood_access_part_opera_id" json:"blood_access_part_opera_id"`
  261. IsHemorrhage int64 `gorm:"column:is_hemorrhage" json:"is_hemorrhage"`
  262. Hemorrhage string `gorm:"column:hemorrhage" json:"hemorrhage"`
  263. HemorrhageOther string `gorm:"column:hemorrhage_other" json:"hemorrhage_other"`
  264. PunctureMethod string `gorm:"column:puncture_method" json:"puncture_method"`
  265. BloodAccessInternalFistula string `gorm:"column:blood_access_internal_fistula" json:"blood_access_internal_fistula"`
  266. InternalFistulaOther string `gorm:"column:internal_fistula_other" json:"internal_fistula_other"`
  267. BloodAccessNoise int64 `gorm:"column:blood_access_noise" json:"blood_access_noise"`
  268. PunctureWay string `gorm:"column:puncture_way" json:"puncture_way"`
  269. VenousCatheterization int64 `gorm:"column:venous_catheterization" json:"venous_catheterization"`
  270. VenousCatheterizationPart int64 `gorm:"column:venous_catheterization_part" json:"venous_catheterization_part"`
  271. VenousCatheterizationPartOther string `gorm:"column:venous_catheterization_part_other" json:"venous_catheterization_part_other"`
  272. DuctusArantii string `gorm:"column:ductus_arantii" json:"ductus_arantii"`
  273. EmergencyTreatment int64 `gorm:"column:emergency_treatment" json:"emergency_treatment"`
  274. EmergencyTreatmentOther string `gorm:"column:emergency_treatment_other" json:"emergency_treatment_other"`
  275. DialysisCount string `gorm:"column:dialysis_count" json:"dialysis_count"`
  276. AssessmentDoctor int64 `gorm:"column:assessment_doctor" json:"assessment_doctor"`
  277. AssessmentTime int64 `gorm:"column:assessment_time" json:"assessment_time"`
  278. MachineType string `gorm:"column:machine_type" json:"machine_type"`
  279. IsInfect int64 `gorm:"column:is_infect" json:"is_infect"`
  280. Exposed float64 `gorm:"column:exposed" json:"exposed"`
  281. Skin string `gorm:"column:skin" json:"skin"`
  282. SkinOther string `gorm:"column:skin_other" json:"skin_other"`
  283. InfectOther string `gorm:"column:infect_other" json:"infect_other"`
  284. DuctusArantiiOther string `gorm:"column:ductus_arantii_other" json:"ductus_arantii_other"`
  285. PunctureNeedle string `gorm:"column:puncture_needle" json:"puncture_needle"`
  286. LastPostDialysisOther string `gorm:"column:last_post_dialysis_other" json:"last_post_dialysis_other"`
  287. SymptomBeforeDialysisOther string `gorm:"column:symptom_before_dialysis_other" json:"symptom_before_dialysis_other"`
  288. DialysisInterphaseOther string `gorm:"column:dialysis_interphase_other" json:"dialysis_interphase_other"`
  289. HumorExcessiveSymptom string `gorm:"column:humor_excessive_symptom" json:"humor_excessive_symptom"`
  290. Phinholing string `gorm:"column:pinholing" json:"pinholing" form:"pinholing"`
  291. CatheterSuture string `gorm:"column:catheter_suture" json:"catheter_suture" form:"catheter_suture"`
  292. CatheterSutureOther string `gorm:"column:catheter_suture_other" json:"catheter_suture_other" form:"catheter_suture_other"`
  293. UrineVolume float64 `gorm:"column:urine_volume" json:"urine_volume" form:"urine_volume"`
  294. Edema string `gorm:"column:edema" json:"edema" form:"edema"`
  295. SpecialTreatment string `gorm:"column:special_treatment" json:"special_treatment" form:"special_treatment"`
  296. CatheterMaintenance string `gorm:"column:catheter_maintenance" json:"catheter_maintenance" form:"catheter_maintenance"`
  297. ThromubusType int64 `gorm:"column:thromubus_type" json:"thromubus_type" form:"thromubus_type"`
  298. ThrombusAv string `gorm:"column:thrombus_av" json:"thrombus_av" form:"thrombus_av"`
  299. ThromubusA string `gorm:"column:thromubus_a" json:"thromubus_a" form:"thromubus_a"`
  300. ThromubusV string `gorm:"column:thromubus_v" json:"thromubus_v" form:"thromubus_v"`
  301. Dehydration string `gorm:"column:dehydration" json:"dehydration" form:"dehydration"`
  302. PreDialysisDrugs string `gorm:"column:pre_dialysis_drugs" json:"pre_dialysis_drugs" form:"pre_dialysis_drugs"`
  303. Period int64 `gorm:"column:period" json:"period" form:"period"`
  304. EstimatedFoodIntake string `gorm:"column:estimated_food_intake" json:"estimated_food_intake" form:"estimated_food_intake"`
  305. BloodPressureDuringDialysis string `gorm:"column:blood_pressure_during_dialysis" json:"blood_pressure_during_dialysis" form:"blood_pressure_during_dialysis"`
  306. UreaBefor string `gorm:"column:urea_befor" json:"urea_befor" form:"urea_befor"`
  307. Suction string `gorm:"column:suction" json:"suction" form:"suction"`
  308. WeightBeforRemake string `gorm:"column:weight_befor_remake" json:"weight_befor_remake" form:"weight_befor_remake"`
  309. Height string `gorm:"column:height" json:"height" form:"height"`
  310. Age string `gorm:"column:age" json:"age" form:"age"`
  311. HisDepartment string `gorm:"column:his_department" json:"his_department" form:"his_department"`
  312. HisBed string `gorm:"column:his_bed" json:"his_bed" form:"his_bed"`
  313. }
  314. func (PredialysisEvaluation) TableName() string {
  315. return "xt_assessment_before_dislysis"
  316. }
  317. type PredialysisEvaluationList struct {
  318. ID int64 `gorm:"column:id" json:"id"`
  319. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  320. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  321. AssessmentDate int64 `gorm:"column:assessment_date" json:"assessment_date"`
  322. WeightBefore float64 `gorm:"column:weight_before" json:"weight_before"`
  323. CreatedTime int64 `gorm:"column:created_time" json:"created_time"`
  324. SystolicBloodPressure float64 `gorm:"column:systolic_blood_pressure" json:"systolic_blood_pressure"`
  325. DiastolicBloodPressure float64 `gorm:"column:diastolic_blood_pressure" json:"diastolic_blood_pressure"`
  326. DryWeight float64 `gorm:"column:dry_weight" json:"dry_weight"`
  327. }
  328. func (PredialysisEvaluationList) TableName() string {
  329. return "xt_assessment_before_dislysis"
  330. }
  331. //更改的地方
  332. type DoctorAdvices struct {
  333. ID int64 `gorm:"column:id" json:"id" form:"id"`
  334. GroupNo int64 `gorm:"column:groupno" json:"groupno" form:"groupno"`
  335. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  336. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  337. AdviceType int64 `gorm:"column:advice_type" json:"advice_type" form:"advice_type"`
  338. AdviceDate int64 `gorm:"column:advice_date" json:"advice_date" form:"advice_date"`
  339. StartTime int64 `gorm:"column:start_time" json:"start_time" form:"start_time"`
  340. AdviceName string `gorm:"column:advice_name" json:"advice_name" form:"advice_name"`
  341. AdviceDesc string `gorm:"column:advice_desc" json:"advice_desc" form:"advice_desc"`
  342. ReminderDate int64 `gorm:"column:reminder_date" json:"reminder_date" form:"reminder_date"`
  343. SingleDose float64 `gorm:"column:single_dose" json:"single_dose" form:"single_dose"`
  344. SingleDoseUnit string `gorm:"column:single_dose_unit" json:"single_dose_unit" form:"single_dose_unit"`
  345. DrugSpec float64 `gorm:"column:drug_spec" json:"drug_spec" form:"drug_spec"`
  346. DrugSpecUnit string `gorm:"column:drug_spec_unit" json:"drug_spec_unit" form:"drug_spec_unit"`
  347. PrescribingNumber float64 `gorm:"column:prescribing_number" json:"prescribing_number" form:"prescribing_number"`
  348. PrescribingNumberUnit string `gorm:"column:prescribing_number_unit" json:"prescribing_number_unit" form:"prescribing_number_unit"`
  349. DeliveryWay string `gorm:"column:delivery_way" json:"delivery_way" form:"delivery_way"`
  350. ExecutionFrequency string `gorm:"column:execution_frequency" json:"execution_frequency" form:"execution_frequency"`
  351. AdviceDoctor int64 `gorm:"column:advice_doctor" json:"advice_doctor" form:"advice_doctor"`
  352. Status int64 `gorm:"column:status" json:"status" form:"status"`
  353. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  354. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
  355. AdviceAffirm string `gorm:"column:advice_affirm" json:"advice_affirm" form:"advice_affirm"`
  356. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  357. StopTime int64 `gorm:"column:stop_time" json:"stop_time" form:"stop_time"`
  358. StopReason string `gorm:"column:stop_reason" json:"stop_reason" form:"stop_reason"`
  359. StopDoctor int64 `gorm:"column:stop_doctor" json:"stop_doctor" form:"stop_doctor"`
  360. StopState int64 `gorm:"column:stop_state" json:"stop_state" form:"stop_state"`
  361. ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
  362. ExecutionTime int64 `gorm:"column:execution_time" json:"execution_time" form:"execution_time"`
  363. ExecutionStaff int64 `gorm:"column:execution_staff" json:"execution_staff" form:"execution_staff"`
  364. ExecutionState int64 `gorm:"column:execution_state" json:"execution_state" form:"execution_state"`
  365. Checker int64 `gorm:"column:checker" json:"checker" form:"checker"`
  366. RecordDate int64 `gorm:"column:record_date" json:"record_date"`
  367. DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id"`
  368. CheckTime int64 `gorm:"column:check_time" json:"check_time" form:"check_time"`
  369. CheckState int64 `gorm:"column:check_state" json:"check_state" form:"check_state"`
  370. AdviceId int64 `gorm:"-"`
  371. RemindType int64 `gorm:"column:remind_type" json:"remind_type"`
  372. FrequencyType int64 `gorm:"column:frequency_type" json:"frequency_type"`
  373. DayCount int64 `gorm:"column:day_count" json:"day_count"`
  374. WeekDay string `gorm:"column:week_day" json:"week_day"`
  375. ChildDoctorAdvice []*DoctorAdvice `gorm:"ForeignKey:ParentId;AssociationForeignKey:ID" json:"child"`
  376. TemplateId string `gorm:"column:template_id" json:"template_id"`
  377. UserName string `gorm:"column:user_name" json:"user_name" form:"user_name"`
  378. Name string `gorm:"column:name" json:"name" form:"name"`
  379. DialyzerPerfusionApparatus string `gorm:"column:dialyzer_perfusion_apparatus" json:"dialyzer_perfusion_apparatus" form:"dialyzer_perfusion_apparatus"`
  380. Anticoagulant int64 `gorm:"column:anticoagulant" json:"anticoagulant" form:"anticoagulant"`
  381. AnticoagulantShouji float64 `gorm:"column:anticoagulant_shouji" json:"anticoagulant_shouji" form:"anticoagulant_shouji"`
  382. AnticoagulantWeichi float64 `gorm:"column:anticoagulant_weichi" json:"anticoagulant_weichi" form:"anticoagulant_weichi"`
  383. AnticoagulantZongliang float64 `gorm:"column:anticoagulant_zongliang" json:"anticoagulant_zongliang" form:"anticoagulant_zongliang"`
  384. DialysisDialyszers string `gorm:"column:dialysis_dialyszers" json:"dialysis_dialyszers" form:"dialysis_dialyszers"`
  385. DialysisIrrigation string `gorm:"column:dialysis_irrigation" json:"dialysis_irrigation" form:"dialysis_irrigation"`
  386. PushStartTime int64 `gorm:"column:push_start_time" json:"push_start_time" form:"push_start_time"`
  387. }
  388. type DoctorAdvice struct {
  389. ID int64 `gorm:"column:id" json:"id" form:"id"`
  390. GroupNo int64 `gorm:"column:groupno" json:"groupno" form:"groupno"`
  391. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  392. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  393. AdviceType int64 `gorm:"column:advice_type" json:"advice_type" form:"advice_type"`
  394. AdviceDate int64 `gorm:"column:advice_date" json:"advice_date" form:"advice_date"`
  395. StartTime int64 `gorm:"column:start_time" json:"start_time" form:"start_time"`
  396. AdviceName string `gorm:"column:advice_name" json:"advice_name" form:"advice_name"`
  397. AdviceDesc string `gorm:"column:advice_desc" json:"advice_desc" form:"advice_desc"`
  398. ReminderDate int64 `gorm:"column:reminder_date" json:"reminder_date" form:"reminder_date"`
  399. SingleDose float64 `gorm:"column:single_dose" json:"single_dose" form:"single_dose"`
  400. SingleDoseUnit string `gorm:"column:single_dose_unit" json:"single_dose_unit" form:"single_dose_unit"`
  401. DrugSpec float64 `gorm:"column:drug_spec" json:"drug_spec" form:"drug_spec"`
  402. DrugSpecUnit string `gorm:"column:drug_spec_unit" json:"drug_spec_unit" form:"drug_spec_unit"`
  403. PrescribingNumber float64 `gorm:"column:prescribing_number" json:"prescribing_number" form:"prescribing_number"`
  404. PrescribingNumberUnit string `gorm:"column:prescribing_number_unit" json:"prescribing_number_unit" form:"prescribing_number_unit"`
  405. DeliveryWay string `gorm:"column:delivery_way" json:"delivery_way" form:"delivery_way"`
  406. ExecutionFrequency string `gorm:"column:execution_frequency" json:"execution_frequency" form:"execution_frequency"`
  407. AdviceDoctor int64 `gorm:"column:advice_doctor" json:"advice_doctor" form:"advice_doctor"`
  408. Status int64 `gorm:"column:status" json:"status" form:"status"`
  409. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  410. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
  411. AdviceAffirm string `gorm:"column:advice_affirm" json:"advice_affirm" form:"advice_affirm"`
  412. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  413. StopTime int64 `gorm:"column:stop_time" json:"stop_time" form:"stop_time"`
  414. StopReason string `gorm:"column:stop_reason" json:"stop_reason" form:"stop_reason"`
  415. StopDoctor int64 `gorm:"column:stop_doctor" json:"stop_doctor" form:"stop_doctor"`
  416. StopState int64 `gorm:"column:stop_state" json:"stop_state" form:"stop_state"`
  417. ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
  418. ExecutionTime int64 `gorm:"column:execution_time" json:"execution_time" form:"execution_time"`
  419. ExecutionStaff int64 `gorm:"column:execution_staff" json:"execution_staff" form:"execution_staff"`
  420. ExecutionState int64 `gorm:"column:execution_state" json:"execution_state" form:"execution_state"`
  421. Checker int64 `gorm:"column:checker" json:"checker" form:"checker"`
  422. RecordDate int64 `gorm:"column:record_date" json:"record_date"`
  423. DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id"`
  424. CheckTime int64 `gorm:"column:check_time" json:"check_time" form:"check_time"`
  425. CheckState int64 `gorm:"column:check_state" json:"check_state" form:"check_state"`
  426. AdviceId int64 `gorm:"-"`
  427. RemindType int64 `gorm:"column:remind_type" json:"remind_type"`
  428. FrequencyType int64 `gorm:"column:frequency_type" json:"frequency_type"`
  429. DayCount int64 `gorm:"column:day_count" json:"day_count"`
  430. WeekDay string `gorm:"column:week_day" json:"week_day"`
  431. ChildDoctorAdvice []*DoctorAdvice `gorm:"ForeignKey:ParentId;AssociationForeignKey:ID" json:"child"`
  432. TemplateId string `gorm:"column:template_id" json:"template_id"`
  433. Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
  434. IsCheck int64 `gorm:"-" json:"is_check" form:"is_check"`
  435. Way int64 `gorm:"column:way" json:"way" form:"way"`
  436. DrugId int64 `gorm:"column:drug_id" json:"drug_id" form:"drug_id"`
  437. DrugNameId int64 `gorm:"column:drug_name_id" json:"drug_name_id" form:"drug_name_id"`
  438. IsMedicine int64 `gorm:"column:is_medicine" json:"is_medicine" form:"is_medicine"`
  439. PushStartTime int64 `gorm:"column:push_start_time" json:"push_start_time" form:"push_start_time"`
  440. }
  441. func (DoctorAdvice) TableName() string {
  442. return "xt_doctor_advice"
  443. }
  444. type XtDoctorAdvice struct {
  445. ID int64 `gorm:"column:id" json:"id" form:"id"`
  446. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  447. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  448. AdviceType int64 `gorm:"column:advice_type" json:"advice_type" form:"advice_type"`
  449. AdviceDate int64 `gorm:"column:advice_date" json:"advice_date" form:"advice_date"`
  450. StartTime int64 `gorm:"column:start_time" json:"start_time" form:"start_time"`
  451. AdviceName string `gorm:"column:advice_name" json:"advice_name" form:"advice_name"`
  452. AdviceDesc string `gorm:"column:advice_desc" json:"advice_desc" form:"advice_desc"`
  453. ReminderDate int64 `gorm:"column:reminder_date" json:"reminder_date" form:"reminder_date"`
  454. SingleDose float64 `gorm:"column:single_dose" json:"single_dose" form:"single_dose"`
  455. SingleDoseUnit string `gorm:"column:single_dose_unit" json:"single_dose_unit" form:"single_dose_unit"`
  456. PrescribingNumber float64 `gorm:"column:prescribing_number" json:"prescribing_number" form:"prescribing_number"`
  457. PrescribingNumberUnit string `gorm:"column:prescribing_number_unit" json:"prescribing_number_unit" form:"prescribing_number_unit"`
  458. DeliveryWay string `gorm:"column:delivery_way" json:"delivery_way" form:"delivery_way"`
  459. ExecutionFrequency string `gorm:"column:execution_frequency" json:"execution_frequency" form:"execution_frequency"`
  460. AdviceDoctor int64 `gorm:"column:advice_doctor" json:"advice_doctor" form:"advice_doctor"`
  461. Status int64 `gorm:"column:status" json:"status" form:"status"`
  462. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  463. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
  464. AdviceAffirm string `gorm:"column:advice_affirm" json:"advice_affirm" form:"advice_affirm"`
  465. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  466. StopTime int64 `gorm:"column:stop_time" json:"stop_time" form:"stop_time"`
  467. StopReason string `gorm:"column:stop_reason" json:"stop_reason" form:"stop_reason"`
  468. StopDoctor int64 `gorm:"column:stop_doctor" json:"stop_doctor" form:"stop_doctor"`
  469. StopState int64 `gorm:"column:stop_state" json:"stop_state" form:"stop_state"`
  470. ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
  471. ExecutionTime int64 `gorm:"column:execution_time" json:"execution_time" form:"execution_time"`
  472. ExecutionStaff int64 `gorm:"column:execution_staff" json:"execution_staff" form:"execution_staff"`
  473. ExecutionState int64 `gorm:"column:execution_state" json:"execution_state" form:"execution_state"`
  474. Checker int64 `gorm:"column:checker" json:"checker" form:"checker"`
  475. RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
  476. DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id" form:"dialysis_order_id"`
  477. CheckTime int64 `gorm:"column:check_time" json:"check_time" form:"check_time"`
  478. CheckState int64 `gorm:"column:check_state" json:"check_state" form:"check_state"`
  479. DrugSpec float64 `gorm:"column:drug_spec" json:"drug_spec" form:"drug_spec"`
  480. DrugSpecUnit string `gorm:"column:drug_spec_unit" json:"drug_spec_unit" form:"drug_spec_unit"`
  481. Groupno int64 `gorm:"column:groupno" json:"groupno" form:"groupno"`
  482. RemindType int64 `gorm:"column:remind_type" json:"remind_type" form:"remind_type"`
  483. FrequencyType int64 `gorm:"column:frequency_type" json:"frequency_type" form:"frequency_type"`
  484. DayCount int64 `gorm:"column:day_count" json:"day_count" form:"day_count"`
  485. WeekDay string `gorm:"column:week_day" json:"week_day" form:"week_day"`
  486. TemplateId string `gorm:"column:template_id" json:"template_id" form:"template_id"`
  487. UserName string `gorm:"column:user_name" json:"user_name" form:"user_name"`
  488. CheckerName string `gorm:"column:user_name" json:"name" form:"name"`
  489. Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
  490. }
  491. func (XtDoctorAdvice) TableName() string {
  492. return "xt_doctor_advice"
  493. }
  494. type GroupAdvice struct {
  495. DoctorAdvice
  496. Children []*GroupAdvice
  497. }
  498. func (GroupAdvice) TableName() string {
  499. return "xt_doctor_advice"
  500. }
  501. type DoubleCheck struct {
  502. ID int64 `gorm:"column:id" json:"id"`
  503. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  504. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  505. DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id"`
  506. CheckDate int64 `gorm:"column:check_date" json:"check_date"`
  507. DialysisItemCheck int64 `gorm:"column:dialysis_item_check" json:"dialysis_item_check"`
  508. DialysisItemDesc string `gorm:"column:dialysis_item_desc" json:"dialysis_item_desc"`
  509. DialysisParameterCheck int64 `gorm:"column:dialysis_parameter_check" json:"dialysis_parameter_check"`
  510. DialysisParameterDesc string `gorm:"column:dialysis_parameter_desc" json:"dialysis_parameter_desc"`
  511. VascularAccessVerification int64 `gorm:"column:vascular_access_verification" json:"vascular_access_verification"`
  512. VascularAccessDesc string `gorm:"column:vascular_access_desc" json:"vascular_access_desc"`
  513. PipelineConnectionCheck int64 `gorm:"column:pipeline_connection_check" json:"pipeline_connection_check"`
  514. PipelineConnectionDesc string `gorm:"column:pipeline_connection_desc" json:"pipeline_connection_desc"`
  515. Collator int64 `gorm:"column:collator" json:"collator"`
  516. Status int64 `gorm:"column:status" json:"status"`
  517. CreatedTime int64 `gorm:"column:created_time" json:"created_time"`
  518. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time"`
  519. Creater int64 `gorm:"column:creater" json:"creater"`
  520. Modifier int64 `gorm:"column:modifier" json:"modifier"`
  521. CheckTime int64 `gorm:"column:check_time" json:"check_time"`
  522. FirstCheckTime int64 `gorm:"column:first_check_time" json:"first_check_time"`
  523. EmployeeNumber string `gorm:"column:employee_number" json:"employee_number" form:"employee_number"`
  524. }
  525. func (DoubleCheck) TableName() string {
  526. return "xt_double_check"
  527. }
  528. type AssessmentAfterDislysis struct {
  529. ID int64 `gorm:"column:id" json:"id"`
  530. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  531. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  532. AssessmentDate int64 `gorm:"column:assessment_date" json:"assessment_date"`
  533. DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id"`
  534. Temperature float64 `gorm:"column:temperature" json:"temperature"`
  535. PulseFrequency float64 `gorm:"column:pulse_frequency" json:"pulse_frequency"`
  536. BreathingRate string `gorm:"column:breathing_rate" json:"breathing_rate"`
  537. SystolicBloodPressure float64 `gorm:"column:systolic_blood_pressure" json:"systolic_blood_pressure"`
  538. DiastolicBloodPressure float64 `gorm:"column:diastolic_blood_pressure" json:"diastolic_blood_pressure"`
  539. BloodPressureType int64 `gorm:"column:blood_pressure_type" json:"blood_pressure_type"`
  540. ActualUltrafiltration float64 `gorm:"column:actual_ultrafiltration" json:"actual_ultrafiltration"`
  541. ActualDisplacement float64 `gorm:"column:actual_displacement" json:"actual_displacement"`
  542. ActualTreatmentHour int64 `gorm:"column:actual_treatment_hour" json:"actual_treatment_hour"`
  543. ActualTreatmentMinute int64 `gorm:"column:actual_treatment_minute" json:"actual_treatment_minute"`
  544. WeighingWay string `gorm:"column:weighing_way" json:"weighing_way"`
  545. WeightAfter float64 `gorm:"column:weight_after" json:"weight_after"`
  546. AdditionalWeight float64 `gorm:"column:additional_weight" json:"additional_weight"`
  547. WeightLoss float64 `gorm:"column:weight_loss" json:"weight_loss"`
  548. Cruor string `gorm:"column:cruor" json:"cruor"`
  549. SymptomAfterDialysis string `gorm:"column:symptom_after_dialysis" json:"symptom_after_dialysis"`
  550. InternalFistula string `gorm:"column:internal_fistula" json:"internal_fistula"`
  551. // InternalFistulaSkin string `gorm:"column:internal_fistula_skin" json:"internal_fistula_skin"`
  552. Catheter string `gorm:"column:catheter" json:"catheter"`
  553. // CatheterBend int `gorm:"column:catheter_bend" json:"catheter_bend"`
  554. Complication string `gorm:"column:complication" json:"complication"`
  555. Evaluator int64 `gorm:"column:evaluator" json:"evaluator"`
  556. Remark string `gorm:"column:remark" json:"remark"`
  557. DialysisIntakes float64 `gorm:"column:dialysis_intakes" json:"dialysis_intakes"`
  558. DialysisIntakesFeed int64 `gorm:"column:dialysis_intakes_feed" json:"dialysis_intakes_feed"`
  559. DialysisIntakesTransfusion int64 `gorm:"column:dialysis_intakes_transfusion" json:"dialysis_intakes_transfusion"`
  560. DialysisIntakesBloodTransfusion int64 `gorm:"column:dialysis_intakes_blood_transfusion" json:"dialysis_intakes_blood_transfusion"`
  561. DialysisIntakesWashpipe int64 `gorm:"column:dialysis_intakes_washpipe" json:"dialysis_intakes_washpipe"`
  562. Status int64 `gorm:"column:status" json:"status"`
  563. CreatedTime int64 `gorm:"column:created_time" json:"created_time"`
  564. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time"`
  565. Creater int64 `gorm:"column:creater" json:"creater"`
  566. Modifier int64 `gorm:"column:modifier" json:"modifier"`
  567. BloodAccessPartId int64 `gorm:"column:blood_access_part_id" json:"blood_access_part_id"`
  568. BloodAccessPartOperaId int64 `gorm:"column:blood_access_part_opera_id" json:"blood_access_part_opera_id"`
  569. PuncturePointOozingBlood int64 `gorm:"column:puncture_point_oozing_blood" json:"puncture_point_oozing_blood"`
  570. PuncturePointHaematoma int64 `gorm:"column:puncture_point_haematoma" json:"puncture_point_haematoma"`
  571. InternalFistulaTremorAc int64 `gorm:"column:internal_fistula_tremor_ac" json:"internal_fistula_tremor_ac"`
  572. PatientGose int64 `gorm:"column:patient_gose" json:"patient_gose"`
  573. InpatientDepartment string `gorm:"column:inpatient_department" json:"inpatient_department"`
  574. ObservationContent string `gorm:"column:observation_content" json:"observation_content"`
  575. ObservationContentOther string `gorm:"column:observation_content_other" json:"observation_content_other"`
  576. DryWeight float64 `gorm:"column:dry_weight" json:"dry_weight"`
  577. DialysisProcess int64 `gorm:"column:dialysis_process" json:"dialysis_process"`
  578. InAdvanceMinute float64 `gorm:"column:in_advance_minute" json:"in_advance_minute"`
  579. InAdvanceReason string `gorm:"column:in_advance_reason" json:"in_advance_reason"`
  580. HemostasisMinute int64 `gorm:"column:hemostasis_minute" json:"hemostasis_minute"`
  581. HemostasisOpera int64 `gorm:"column:hemostasis_opera" json:"hemostasis_opera"`
  582. TremorNoise int64 `gorm:"column:tremor_noise" json:"tremor_noise"`
  583. DisequilibriumSyndrome int64 `gorm:"column:disequilibrium_syndrome" json:"disequilibrium_syndrome"`
  584. DisequilibriumSyndromeOption string `gorm:"column:disequilibrium_syndrome_option" json:"disequilibrium_syndrome_option"`
  585. ArterialTube int64 `gorm:"column:arterial_tube" json:"arterial_tube"`
  586. IntravenousTube int64 `gorm:"column:intravenous_tube" json:"intravenous_tube"`
  587. Dialyzer int64 `gorm:"column:dialyzer" json:"dialyzer"`
  588. InAdvanceReasonOther string `gorm:"column:in_advance_reason_other" json:"in_advance_reason_other"`
  589. AssessmentTime int64 `gorm:"column:assessment_time" json:"assessment_time"`
  590. AssessmentDoctor int64 `gorm:"column:assessment_doctor" json:"assessment_doctor"`
  591. IsEat int64 `gorm:"column:is_eat" json:"is_eat"`
  592. DialysisIntakesUnit int64 `gorm:"column:dialysis_intakes_unit" json:"dialysis_intakes_unit"`
  593. CvcA float64 `gorm:"column:cvc_a" json:"cvc_a" form:"cvc_a"`
  594. CvcV float64 `gorm:"column:cvc_v" json:"cvc_v" form:"cvc_v"`
  595. ReturnBlood int64 `gorm:"column:return_blood" json:"return_blood" form:"return_blood"`
  596. RehydrationVolume int64 `gorm:"column:rehydration_volume" json:"rehydration_volume" form:"rehydration_volume"`
  597. DialysisDuring int64 `gorm:"column:dialysis_during" json:"dialysis_during" form:"dialysis_during"`
  598. StrokeVolume int64 `gorm:"column:stroke_volume" json:"stroke_volume" form:"stroke_volume"`
  599. Channel int64 `gorm:"column:channel" json:"channel" form:"channel"`
  600. BloodFlow int64 `gorm:"column:blood_flow" json:"blood_flow" form:"blood_flow"`
  601. SealingFluidDispose string `gorm:"column:sealing_fluid_dispose" json:"sealing_fluid_dispose" form:"sealing_fluid_dispose"`
  602. SealingFluidSpecial string `gorm:"column:sealing_fluid_special" json:"sealing_fluid_special" form:"sealing_fluid_special"`
  603. DosageOfAnticoagulants float64 `gorm:"column:dosage_of_anticoagulants" json:"dosage_of_anticoagulants" form:"dosage_of_anticoagulants"`
  604. SupineSystolicBloodPressure string `gorm:"column:supine_systolic_blood_pressure" json:"supine_systolic_blood_pressure" form:"supine_systolic_blood_pressure"`
  605. SettingPressure string `gorm:"column:setting_pressure" json:"setting_pressure" form:"setting_pressure"`
  606. SupineDiastolicBloodPressure string `gorm:"column:supine_diastolic_blood_pressure" json:"supine_diastolic_blood_pressure" form:"supine_diastolic_blood_pressure"`
  607. DiastolicPressure string `gorm:"column:diastolic_pressure" json:"diastolic_pressure" form:"diastolic_pressure"`
  608. OtherComplication string `gorm:"column:other_complication" json:"other_complication" form:"other_complication"`
  609. Ktv string `gorm:"column:ktv" json:"ktv" form:"ktv"`
  610. Urr string `gorm:"column:urr" json:"urr" form:"urr"`
  611. Hypertenison int64 `gorm:"column:hypertenison" json:"hypertenison" form:"hypertenison"`
  612. Hypopiesia int64 `gorm:"column:hypopiesia" json:"hypopiesia" form:"hypopiesia"`
  613. LeaveOfficeMethod int64 `gorm:"column:leave_office_method" json:"leave_office_method" form:"leave_office_method"`
  614. Lapse int64 `gorm:"column:lapse" json:"lapse" form:"lapse"`
  615. Consciousness int64 `gorm:"column:consciousness" json:"consciousness" form:"consciousness"`
  616. Fallrisk int64 `gorm:"column:fallrisk" json:"fallrisk" form:"fallrisk"`
  617. MachineRun string `gorm:"column:machine_run" json:"machine_run" form:"machine_run"`
  618. AfterUrea string `gorm:"column:after_urea" json:"after_urea" form:"after_urea"`
  619. PipCoagulation string `gorm:"column:pip_coagulation" json:"pip_coagulation" form:"pip_coagulation"`
  620. AccumulatedBloodVolume string `gorm:"column:accumulated_blood_volume" json:"accumulated_blood_volume" form:"accumulated_blood_volume"`
  621. }
  622. func (AssessmentAfterDislysis) TableName() string {
  623. return "xt_assessment_after_dislysis"
  624. }
  625. type TreatmentSummary struct {
  626. ID int64 `gorm:"column:id" json:"id"`
  627. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  628. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  629. AssessmentDate int64 `gorm:"column:assessment_date" json:"assessment_date"`
  630. DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id"`
  631. Mission string `gorm:"column:mission" json:"mission"`
  632. DialysisSummary string `gorm:"column:dialysis_summary" json:"dialysis_summary"`
  633. Change int64 `gorm:"column:change" json:"change"`
  634. SjNurse int64 `gorm:"column:sj_nurse" json:"sj_nurse"`
  635. ZlNurse int64 `gorm:"column:zl_nurse" json:"zl_nurse"`
  636. HdNurse int64 `gorm:"column:hd_nurse" json:"hd_nurse"`
  637. XjNurse int64 `gorm:"column:xj_nurse" json:"xj_nurse"`
  638. ZlDoctor int64 `gorm:"column:zl_doctor" json:"zl_doctor"`
  639. ChannelImage string `gorm:"column:channel_image" json:"channel_image"`
  640. Puncture string `gorm:"column:puncture" json:"puncture"`
  641. PunctureNeedle string `gorm:"column:puncture_needle" json:"puncture_needle"`
  642. PunctureDirection string `gorm:"column:puncture_direction" json:"puncture_direction"`
  643. Status int64 `gorm:"column:status" json:"status"`
  644. CreatedTime int64 `gorm:"column:created_time" json:"created_time"`
  645. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time"`
  646. Creater int64 `gorm:"column:creater" json:"creater"`
  647. Modifier int64 `gorm:"column:modifier" json:"modifier"`
  648. NursingRecord string `gorm:"column:nursing_record" json:"nursing_record" form:"nursing_record"`
  649. SpecialRecord string `gorm:"column:special_record" json:"special_record" form:"special_record"`
  650. }
  651. func (TreatmentSummary) TableName() string {
  652. return "xt_treatment_summary"
  653. }
  654. type DryWeightAdjust struct {
  655. ID int64 `gorm:"column:id" json:"id" form:"id"`
  656. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  657. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  658. Weight float64 `gorm:"column:weight" json:"weight" form:"weight"`
  659. AdjustedValue float64 `gorm:"column:adjusted_value" json:"adjusted_value" form:"adjusted_value"`
  660. Doctor int64 `gorm:"column:doctor" json:"doctor" form:"doctor"`
  661. RegistrarsId int64 `gorm:"column:registrars_id" json:"registrars_id" form:"registrars_id"`
  662. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  663. Status int64 `gorm:"column:status" json:"status" form:"status"`
  664. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  665. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
  666. }
  667. func (DryWeightAdjust) TableName() string {
  668. return "xt_dry_weight_adjust"
  669. }
  670. type MonitoringRecord struct {
  671. ID int64 `gorm:"column:id" json:"id"`
  672. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  673. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  674. DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id"`
  675. MonitoringDate int64 `gorm:"column:monitoring_date" json:"monitoring_date"`
  676. OperateTime int64 `gorm:"column:operate_time" json:"operate_time"`
  677. MonitoringTime string `gorm:"column:monitoring_time" json:"monitoring_time"`
  678. PulseFrequency float64 `gorm:"column:pulse_frequency" json:"pulse_frequency"`
  679. BreathingRate string `gorm:"column:breathing_rate" json:"breathing_rate"`
  680. SystolicBloodPressure float64 `gorm:"column:systolic_blood_pressure" json:"systolic_blood_pressure"`
  681. DiastolicBloodPressure float64 `gorm:"column:diastolic_blood_pressure" json:"diastolic_blood_pressure"`
  682. BloodPressureType int64 `gorm:"column:blood_pressure_type" json:"blood_pressure_type"`
  683. Pic string `gorm:"column:pic" json:"pic"`
  684. BloodFlowVolume float64 `gorm:"column:blood_flow_volume" json:"blood_flow_volume"`
  685. VenousPressure float64 `gorm:"column:venous_pressure" json:"venous_pressure"`
  686. VenousPressureType int64 `gorm:"column:venous_pressure_type" json:"venous_pressure_type"`
  687. ArterialPressure float64 `gorm:"column:arterial_pressure" json:"arterial_pressure"`
  688. ArterialPressureType int64 `gorm:"column:arterial_pressure_type" json:"arterial_pressure_type"`
  689. TransmembranePressure float64 `gorm:"column:transmembrane_pressure" json:"transmembrane_pressure"`
  690. TransmembranePressureType int64 `gorm:"column:transmembrane_pressure_type" json:"transmembrane_pressure_type"`
  691. UltrafiltrationRate float64 `gorm:"column:ultrafiltration_rate" json:"ultrafiltration_rate"`
  692. UltrafiltrationVolume float64 `gorm:"column:ultrafiltration_volume" json:"ultrafiltration_volume"`
  693. SodiumConcentration float64 `gorm:"column:sodium_concentration" json:"sodium_concentration"`
  694. DialysateTemperature float64 `gorm:"column:dialysate_temperature" json:"dialysate_temperature"`
  695. Temperature float64 `gorm:"column:temperature" json:"temperature"`
  696. ReplacementRate float64 `gorm:"column:replacement_rate" json:"replacement_rate"`
  697. DisplacementQuantity float64 `gorm:"column:displacement_quantity" json:"displacement_quantity"`
  698. Ktv float64 `gorm:"column:ktv" json:"ktv"`
  699. Symptom string `gorm:"column:symptom" json:"symptom"`
  700. Dispose string `gorm:"column:dispose" json:"dispose"`
  701. Result string `gorm:"column:result" json:"result"`
  702. MonitoringNurse int64 `gorm:"column:monitoring_nurse" json:"monitoring_nurse"`
  703. Status int64 `gorm:"column:status" json:"status"`
  704. CreatedTime int64 `gorm:"column:created_time" json:"created_time"`
  705. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time"`
  706. Conductivity float64 `gorm:"column:conductivity" json:"conductivity"`
  707. DisplacementFlowQuantity float64 `gorm:"column:displacement_flow_quantity" json:"displacement_flow_quantity"`
  708. BloodOxygenSaturation string `gorm:"column:blood_oxygen_saturation" json:"blood_oxygen_saturation" form:"blood_oxygen_saturation"`
  709. Creator int64 `gorm:"column:creator" json:"creator" form:"creator"`
  710. Modify int64 `gorm:"column:modify" json:"modify" form:"modify"`
  711. Heparin float64 `gorm:"column:heparin" json:"heparin" form:"heparin"`
  712. DialysateFlow float64 `gorm:"column:dialysate_flow" json:"dialysate_flow" form:"dialysate_flow"`
  713. Urr string `gorm:"column:urr" json:"urr"`
  714. BloodSugar float64 `gorm:"column:blood_sugar" json:"blood_sugar" form:"blood_sugar"`
  715. MonitorAnticoagulant int64 `gorm:"column:monitor_anticoagulant" json:"monitor_anticoagulant" form:"monitor_anticoagulant"`
  716. MonitorAnticoagulantValue string `gorm:"column:monitor_anticoagulant_value" json:"monitor_anticoagulant_value" form:"monitor_anticoagulant_value"`
  717. BloodPressureMonitoringSite int64 `gorm:"column:blood_pressure_monitoring_site" json:"blood_pressure_monitoring_site" form:"blood_pressure_monitoring_site"`
  718. Complication int64 `gorm:"column:complication" json:"complication" form:"complication"`
  719. AccumulatedBloodVolume float64 `gorm:"column:accumulated_blood_volume" json:"accumulated_blood_volume" form:"accumulated_blood_volume"`
  720. BloodTemperature float64 `gorm:"column:blood_temperature" json:"blood_temperature" form:"blood_temperature"`
  721. UreaMonitoring float64 `gorm:"column:urea_monitoring" json:"urea_monitoring" form:"urea_monitoring"`
  722. BloodThickness float64 `gorm:"column:blood_thickness" json:"blood_thickness" form:"blood_thickness"`
  723. BloodMonitor float64 `gorm:"column:blood_monitor" json:"blood_monitor" form:"blood_monitor"`
  724. HeparinAmount float64 `gorm:"column:heparin_amount" json:"heparin_amount" form:"heparin_amount"`
  725. Dehydration float64 `gorm:"column:dehydration" json:"dehydration" form:"dehydration"`
  726. }
  727. func (MonitoringRecord) TableName() string {
  728. return "xt_monitoring_record"
  729. }
  730. type DialysisOrders struct {
  731. ID int64 `gorm:"column:id" json:"id"`
  732. DialysisDate int64 `gorm:"column:dialysis_date" json:"dialysis_date"`
  733. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  734. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  735. PrescriptionId int64 `gorm:"column:prescription_id" json:"prescription_id"`
  736. Stage int64 `gorm:"column:stage" json:"stage"`
  737. Remark string `gorm:"column:remark" json:"remark"`
  738. BedID int64 `gorm:"column:bed_id" json:"bed_id"`
  739. StartNurse int64 `gorm:"column:start_nurse" json:"start_nurse"`
  740. FinishNurse int64 `gorm:"column:finish_nurse" json:"finish_nurse"`
  741. Status int64 `gorm:"column:status" json:"status"`
  742. CreatedTime int64 `gorm:"column:created_time" json:"created_time"`
  743. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time"`
  744. DeviceNumber DeviceNumber `gorm:"ForeignKey:BedID"`
  745. StartTime int64 `gorm:"column:start_time" json:"start_time"`
  746. EndTime int64 `gorm:"column:end_time" json:"end_time"`
  747. PunctureNurse int64 `gorm:"column:puncture_nurse" json:"puncture_nurse"`
  748. Creator int64 `gorm:"column:creator" json:"creator"`
  749. Modifier int64 `gorm:"column:modifier" json:"modifier"`
  750. FinishCreator int64 `gorm:"column:finish_creator" json:"finish_creator"`
  751. FinishModifier int64 `gorm:"column:finish_modifier" json:"finish_modifier"`
  752. SchedualType int64 `gorm:"column:schedual_type" json:"schedual_type"`
  753. Name int64 `gorm:"column:name" json:"name"`
  754. Number string `gorm:"column:number" json:"number"`
  755. }
  756. type VmDialysisOrder struct {
  757. Count int64
  758. DialysisDate int64 `gorm:"column:dialysis_date" json:"dialysis_date"`
  759. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  760. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  761. Stage int64 `gorm:"column:stage" json:"stage"`
  762. Status int64 `gorm:"column:status" json:"status"`
  763. }
  764. func (VmDialysisOrder) TableName() string {
  765. return "xt_dialysis_order"
  766. }
  767. type DialysisOrder struct {
  768. ID int64 `gorm:"column:id" json:"id"`
  769. DialysisDate int64 `gorm:"column:dialysis_date" json:"dialysis_date"`
  770. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  771. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  772. PrescriptionId int64 `gorm:"column:prescription_id" json:"prescription_id"`
  773. Stage int64 `gorm:"column:stage" json:"stage"`
  774. Remark string `gorm:"column:remark" json:"remark"`
  775. BedID int64 `gorm:"column:bed_id" json:"bed_id"`
  776. StartNurse int64 `gorm:"column:start_nurse" json:"start_nurse"`
  777. FinishNurse int64 `gorm:"column:finish_nurse" json:"finish_nurse"`
  778. Status int64 `gorm:"column:status" json:"status"`
  779. CreatedTime int64 `gorm:"column:created_time" json:"created_time"`
  780. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time"`
  781. DeviceNumber DeviceNumber `gorm:"ForeignKey:BedID"`
  782. StartTime int64 `gorm:"column:start_time" json:"start_time"`
  783. EndTime int64 `gorm:"column:end_time" json:"end_time"`
  784. PunctureNurse int64 `gorm:"column:puncture_nurse" json:"puncture_nurse"`
  785. Creator int64 `gorm:"column:creator" json:"creator"`
  786. Modifier int64 `gorm:"column:modifier" json:"modifier"`
  787. FinishCreator int64 `gorm:"column:finish_creator" json:"finish_creator"`
  788. FinishModifier int64 `gorm:"column:finish_modifier" json:"finish_modifier"`
  789. SchedualType int64 `gorm:"column:schedual_type" json:"schedual_type"`
  790. UserAdminRole UserAdminRole `json:"role" gorm:"foreignkey:AdminUserId;AssociationForeignKey:StartNurse;"`
  791. WashpipeNurse int64 `gorm:"column:washpipe_nurse" json:"washpipe_nurse" form:"washpipe_nurse"`
  792. ChangeNurse int64 `gorm:"column:change_nurse" json:"change_nurse" form:"change_nurse"`
  793. DifficultPunctureNurse int64 `gorm:"column:difficult_puncture_nurse" json:"difficult_puncture_nurse" form:"difficult_puncture_nurse"`
  794. NewFistulaNurse int64 `gorm:"column:new_fistula_nurse" json:"new_fistula_nurse" form:"new_fistula_nurse"`
  795. ZoneId int64 `gorm:"column:zone_id" json:"zone_id" form:"zone_id"`
  796. PuncturePointHaematoma int64 `gorm:"column:puncture_point_haematoma" json:"puncture_point_haematoma" form:"puncture_point_haematoma"`
  797. BloodAccessInternalFistula string `gorm:"column:blood_access_internal_fistula" json:"blood_access_internal_fistula" form:"blood_access_internal_fistula"`
  798. Catheter string `gorm:"column:catheter" json:"catheter" form:"catheter"`
  799. Cruor string `gorm:"column:cruor" json:"cruor" form:"cruor"`
  800. Url string `gorm:"column:url" json:"url" form:"url"`
  801. Hash string `gorm:"column:hash" json:"hash" form:"hash"`
  802. QualityNurseId int64 `gorm:"column:quality_nurse_id" json:"quality_nurse_id" form:"quality_nurse_id"`
  803. PunctureNeedle string `gorm:"column:puncture_needle" json:"puncture_needle" form:"puncture_needle"`
  804. PunctureWay string `gorm:"column:puncture_way" json:"puncture_way" form:"puncture_way"`
  805. DialysisDialyszers string `gorm:"column:dialysis_dialyszers" json:"dialysis_dialyszers" form:"dialysis_dialyszers"`
  806. DialysisIrrigation string `gorm:"column:dialysis_irrigation" json:"dialysis_irrigation" form:"dialysis_irrigation"`
  807. BloodAccessId int64 `gorm:"column:blood_access_id" json:"blood_access_id" form:"blood_access_id"`
  808. Mission string `gorm:"column:mission" json:"mission" form:"mission"`
  809. NucleinDate int64 `gorm:"column:nuclein_date" json:"nuclein_date" form:"nuclein_date"`
  810. }
  811. func (DialysisOrder) TableName() string {
  812. return "xt_dialysis_order"
  813. }
  814. type XtDialysisOrder struct {
  815. ID int64 `gorm:"column:id" json:"id" form:"id"`
  816. DialysisDate int64 `gorm:"column:dialysis_date" json:"dialysis_date" form:"dialysis_date"`
  817. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  818. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  819. PrescriptionId int64 `gorm:"column:prescription_id" json:"prescription_id" form:"prescription_id"`
  820. Stage int64 `gorm:"column:stage" json:"stage" form:"stage"`
  821. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  822. BedId int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
  823. StartNurse int64 `gorm:"column:start_nurse" json:"start_nurse" form:"start_nurse"`
  824. FinishNurse int64 `gorm:"column:finish_nurse" json:"finish_nurse" form:"finish_nurse"`
  825. Status int64 `gorm:"column:status" json:"status" form:"status"`
  826. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  827. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
  828. StartTime int64 `gorm:"column:start_time" json:"start_time" form:"start_time"`
  829. EndTime int64 `gorm:"column:end_time" json:"end_time" form:"end_time"`
  830. PunctureNurse int64 `gorm:"column:puncture_nurse" json:"puncture_nurse" form:"puncture_nurse"`
  831. Creator int64 `gorm:"column:creator" json:"creator" form:"creator"`
  832. Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
  833. FinishCreator int64 `gorm:"column:finish_creator" json:"finish_creator" form:"finish_creator"`
  834. FinishModifier int64 `gorm:"column:finish_modifier" json:"finish_modifier" form:"finish_modifier"`
  835. SchedualType int64 `gorm:"column:schedual_type" json:"schedual_type" form:"schedual_type"`
  836. Number int64 `gorm:"column:number" json:"number" form:"number"`
  837. UserName int64 `gorm:"column:user_name" json:"user_name" form:"user_name"`
  838. WashpipeNurse int64 `gorm:"column:washpipe_nurse" json:"washpipe_nurse" form:"washpipe_nurse"`
  839. }
  840. func (XtDialysisOrder) TableName() string {
  841. return "xt_dialysis_order"
  842. }
  843. type XtDialysisOrders struct {
  844. ID int64 `gorm:"column:id" json:"id" form:"id"`
  845. DialysisDate int64 `gorm:"column:dialysis_date" json:"dialysis_date" form:"dialysis_date"`
  846. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  847. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  848. PrescriptionId int64 `gorm:"column:prescription_id" json:"prescription_id" form:"prescription_id"`
  849. Stage int64 `gorm:"column:stage" json:"stage" form:"stage"`
  850. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  851. BedId int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
  852. StartNurse int64 `gorm:"column:start_nurse" json:"start_nurse" form:"start_nurse"`
  853. FinishNurse int64 `gorm:"column:finish_nurse" json:"finish_nurse" form:"finish_nurse"`
  854. Status int64 `gorm:"column:status" json:"status" form:"status"`
  855. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  856. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
  857. StartTime int64 `gorm:"column:start_time" json:"start_time" form:"start_time"`
  858. EndTime int64 `gorm:"column:end_time" json:"end_time" form:"end_time"`
  859. PunctureNurse int64 `gorm:"column:puncture_nurse" json:"puncture_nurse" form:"puncture_nurse"`
  860. Creator int64 `gorm:"column:creator" json:"creator" form:"creator"`
  861. Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
  862. FinishCreator int64 `gorm:"column:finish_creator" json:"finish_creator" form:"finish_creator"`
  863. FinishModifier int64 `gorm:"column:finish_modifier" json:"finish_modifier" form:"finish_modifier"`
  864. SchedualType int64 `gorm:"column:schedual_type" json:"schedual_type" form:"schedual_type"`
  865. Number string `gorm:"column:number" json:"number" form:"number"`
  866. UserName string `gorm:"column:user_name" json:"user_name" form:"user_name"`
  867. WashpipeNurse int64 `gorm:"column:washpipe_nurse" json:"washpipe_nurse" form:"washpipe_nurse"`
  868. ModeId int64 `gorm:"column:mode_id" json:"mode_id" form:"mode_id"`
  869. QualityNurseId int64 `gorm:"column:quality_nurse_id" json:"quality_nurse_id" form:"quality_nurse_id"`
  870. }
  871. type TreatmentMode struct {
  872. ID int64 `gorm:"column:id" json:"id" form:"id"`
  873. Name string `gorm:"column:name" json:"name" form:"name"`
  874. DialysisDuration int64 `gorm:"column:dialysis_duration" json:"dialysis_duration" form:"dialysis_duration"`
  875. ReplacementWay int64 `gorm:"column:replacement_way" json:"replacement_way" form:"replacement_way"`
  876. HemodialysisMachine int64 `gorm:"column:hemodialysis_machine" json:"hemodialysis_machine" form:"hemodialysis_machine"`
  877. BloodFilter int64 `gorm:"column:blood_filter" json:"blood_filter" form:"blood_filter"`
  878. PerfusionApparatus int64 `gorm:"column:perfusion_apparatus" json:"perfusion_apparatus" form:"perfusion_apparatus"`
  879. BloodFlowVolume int64 `gorm:"column:blood_flow_volume" json:"blood_flow_volume" form:"blood_flow_volume"`
  880. DialysateFlow int64 `gorm:"column:dialysate_flow" json:"dialysate_flow" form:"dialysate_flow"`
  881. Kalium int64 `gorm:"column:kalium" json:"kalium" form:"kalium"`
  882. Sodium int64 `gorm:"column:sodium" json:"sodium" form:"sodium"`
  883. Calcium int64 `gorm:"column:calcium" json:"calcium" form:"calcium"`
  884. Bicarbonate int64 `gorm:"column:bicarbonate" json:"bicarbonate" form:"bicarbonate"`
  885. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  886. Status int64 `gorm:"column:status" json:"status" form:"status"`
  887. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  888. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
  889. }
  890. func (TreatmentMode) TableName() string {
  891. return "xt_treatment_mode"
  892. }
  893. type ReceiveTreatmentAsses struct {
  894. ID int64 `gorm:"column:id" json:"id"`
  895. Way int64 `gorm:"column:way" json:"way"`
  896. Consciousness int64 `gorm:"column:consciousness" json:"consciousness"`
  897. Appetite int64 `gorm:"column:appetite" json:"appetite"`
  898. Condition int64 `gorm:"column:condition" json:"condition"`
  899. Creater int64 `gorm:"column:creater" json:"creater"`
  900. Posture int64 `gorm:"column:posture" json:"posture"`
  901. CreatedTime int64 `gorm:"column:created_time" json:"created_time"`
  902. UpdateTime int64 `gorm:"column:update_time" json:"update_time"`
  903. RecordId int64 `gorm:"column:record_id" json:"record_id"`
  904. RecordDate int64 `gorm:"column:record_date" json:"record_date"`
  905. Modifier int64 `gorm:"column:modifier" json:"modifier"`
  906. Status int64 `gorm:"column:status" json:"status"`
  907. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  908. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  909. SickCondition int64 `gorm:"column:sick_condition" json:"sick_condition"`
  910. DangerLevel int64 `gorm:"column:danger_level" json:"danger_level"`
  911. Intake int64 `gorm:"column:intake" json:"intake"`
  912. Nutrition int64 `gorm:"column:nutrition" json:"nutrition"`
  913. PsychologicalAssessment int64 `gorm:"column:psychological_assessment" json:"psychological_assessment"`
  914. PsychologicalAssessmentOther string `gorm:"column:psychological_assessment_other" json:"psychological_assessment_other"`
  915. Score string `gorm:"column:score" json:"score"`
  916. SickConditionOther string `gorm:"column:sick_condition_other" json:"sick_condition_other"`
  917. Precaution string `gorm:"column:precaution" json:"precaution"`
  918. PrecautionOther string `gorm:"column:precaution_other" json:"precaution_other"`
  919. PsychologicalOther string `gorm:"column:psychological_other" json:"psychological_other"`
  920. IsPrecaution int64 `gorm:"column:is_precaution" json:"is_precaution"`
  921. AdmissionNumber string `gorm:"column:admission_number" json:"admission_number" form:"admission_number"`
  922. Diacrisis string `gorm:"column:diacrisis" json:"diacrisis" form:"diacrisis"`
  923. Tumble int64 `gorm:"column:tumble" json:"tumble" form:"tumble"`
  924. HisDepartment string `gorm:"column:his_department" json:"his_department" form:"his_department"`
  925. HisBed string `gorm:"column:his_bed" json:"his_bed" form:"his_bed"`
  926. }
  927. func (ReceiveTreatmentAsses) TableName() string {
  928. return "xt_receive_treatment_asses"
  929. }
  930. type GobalTemplate struct {
  931. ID int64 `gorm:"column:id" json:"id"`
  932. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  933. TemplateId int64 `gorm:"column:template_id" json:"template_id"`
  934. Status int64 `gorm:"column:status" json:"status"`
  935. Ctime int64 `gorm:"column:ctime" json:"ctime"`
  936. Mtime int64 `gorm:"column:mtime" json:"mtime"`
  937. }
  938. func (GobalTemplate) TableName() string {
  939. return "xt_gobal_template"
  940. }
  941. type SgjUserAdminRole struct {
  942. ID int64 `gorm:"column:id" json:"id" form:"id"`
  943. AdminUserId int64 `gorm:"column:admin_user_id" json:"admin_user_id" form:"admin_user_id"`
  944. OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
  945. AppId int64 `gorm:"column:app_id" json:"app_id" form:"app_id"`
  946. RoleId int64 `gorm:"column:role_id" json:"role_id" form:"role_id"`
  947. UserName string `gorm:"column:user_name" json:"user_name" form:"user_name"`
  948. Avatar string `gorm:"column:avatar" json:"avatar" form:"avatar"`
  949. UserType int64 `gorm:"column:user_type" json:"user_type" form:"user_type"`
  950. UserTitle int64 `gorm:"column:user_title" json:"user_title" form:"user_title"`
  951. Intro string `gorm:"column:intro" json:"intro" form:"intro"`
  952. Status int64 `gorm:"column:status" json:"status" form:"status"`
  953. Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
  954. Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
  955. Message string `gorm:"column:message" json:"message" form:"message"`
  956. Sex int64 `gorm:"column:sex" json:"sex" form:"sex"`
  957. Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
  958. UserTitleName string `gorm:"column:user_title_name" json:"user_title_name" form:"user_title_name"`
  959. RoleIds string `gorm:"column:role_ids" json:"role_ids" form:"role_ids"`
  960. OrgName string `gorm:"column:org_name" json:"org_name" form:"org_name"`
  961. OrgLogo string `gorm:"column:org_logo" json:"org_logo" form:"org_logo"`
  962. Creator int64 `gorm:"column:creator" json:"creator" form:"creator"`
  963. JobNumber string `gorm:"column:job_number" json:"job_number" form:"job_number"`
  964. }
  965. func (SgjUserAdminRole) TableName() string {
  966. return "sgj_user_admin_role"
  967. }
  968. type SgjUserAdmin struct {
  969. ID int64 `gorm:"column:id" json:"id" form:"id"`
  970. Mobile string `gorm:"column:mobile" json:"mobile" form:"mobile"`
  971. Password string `gorm:"column:password" json:"password" form:"password"`
  972. IsSuperAdmin int64 `gorm:"column:is_super_admin" json:"is_super_admin" form:"is_super_admin"`
  973. Status int64 `gorm:"column:status" json:"status" form:"status"`
  974. Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
  975. Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
  976. Source int64 `gorm:"column:source" json:"source" form:"source"`
  977. Ttype int64 `gorm:"column:ttype" json:"ttype" form:"ttype"`
  978. Ttid int64 `gorm:"column:ttid" json:"ttid" form:"ttid"`
  979. Tuid int64 `gorm:"column:tuid" json:"tuid" form:"tuid"`
  980. Name string `gorm:"column:name" json:"name" form:"name"`
  981. }
  982. func (SgjUserAdmin) TableName() string {
  983. return "sgj_user_admin"
  984. }
  985. type UserAdminRoles struct {
  986. ID int64 `gorm:"column:id" json:"id" form:"id"`
  987. AdminUserId int64 `gorm:"column:admin_user_id" json:"admin_user_id" form:"admin_user_id"`
  988. OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
  989. AppId int64 `gorm:"column:app_id" json:"app_id" form:"app_id"`
  990. RoleId int64 `gorm:"column:role_id" json:"role_id" form:"role_id"`
  991. UserName string `gorm:"column:user_name" json:"user_name" form:"user_name"`
  992. Avatar string `gorm:"column:avatar" json:"avatar" form:"avatar"`
  993. UserType int64 `gorm:"column:user_type" json:"user_type" form:"user_type"`
  994. UserTitle int64 `gorm:"column:user_title" json:"user_title" form:"user_title"`
  995. Intro string `gorm:"column:intro" json:"intro" form:"intro"`
  996. Status int64 `gorm:"column:status" json:"status" form:"status"`
  997. Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
  998. Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
  999. UserTitleName string `gorm:"column:user_title_name" json:"user_title_name" form:"user_title_name"`
  1000. RoleIds string `gorm:"column:role_ids" json:"role_ids" form:"role_ids"`
  1001. Message string `gorm:"column:message" json:"message" form:"message"`
  1002. Sex int64 `gorm:"column:sex" json:"sex" form:"sex"`
  1003. Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
  1004. Creator int64 `gorm:"column:creator" json:"creator" form:"creator"`
  1005. Url string `gorm:"column:url" json:"url" form:"url"`
  1006. Hash string `gorm:"column:hash" json:"hash" form:"hash"`
  1007. }
  1008. type DialysisBeforePrepare struct {
  1009. ID int64 `gorm:"column:id" json:"id" form:"id"`
  1010. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  1011. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  1012. RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
  1013. GoodId int64 `gorm:"column:good_id" json:"good_id" form:"good_id"`
  1014. GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id" form:"good_type_id"`
  1015. Count int64 `gorm:"column:count" json:"count" form:"count"`
  1016. Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
  1017. Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
  1018. Creater int64 `gorm:"column:creater" json:"creater" form:"creater"`
  1019. Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
  1020. Status int64 `gorm:"column:status" json:"status" form:"status"`
  1021. CommdityCode string `gorm:"column:commdity_code" json:"commdity_code" form:"commdity_code"`
  1022. NewCount int64 `gorm:"column:new_count" json:"new_count" form:"new_count"`
  1023. Children []*DialysisBeforePrepare `gorm:"column:children" json:"children" form:"children"`
  1024. ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
  1025. StorehouseId int64 `gorm:"column:storehouse_id" json:"storehouse_id" form:"storehouse_id"`
  1026. }
  1027. func (DialysisBeforePrepare) TableName() string {
  1028. return "dialysis_before_prepare"
  1029. }
  1030. type DialysisBeforePrepareGoods struct {
  1031. GoodId int64 `gorm:"column:good_id" json:"good_id" form:"good_id"`
  1032. Count int64 `gorm:"column:count" json:"count" form:"count"`
  1033. GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id" form:"good_type_id"`
  1034. TypeName string `gorm:"column:type_name" json:"type_name" form:"type_name"`
  1035. SpecificationName string `gorm:"column:specification_name" json:"specification_name" form:"specification_name"`
  1036. ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
  1037. StorehouseId int64 `gorm:"column:storehouse_id" json:"storehouse_id" form:"storehouse_id"`
  1038. }
  1039. type NewDialysisBeforePrepareGoods struct {
  1040. GoodId int64 `gorm:"column:good_id" json:"good_id" form:"good_id"`
  1041. Count int64 `gorm:"column:count" json:"count" form:"count"`
  1042. GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id" form:"good_type_id"`
  1043. TypeName string `gorm:"column:type_name" json:"type_name" form:"type_name"`
  1044. SpecificationName string `gorm:"column:specification_name" json:"specification_name" form:"specification_name"`
  1045. NewCount int64 `gorm:"column:new_count" json:"new_count" form:"new_count"`
  1046. ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
  1047. StorehouseId int64 `gorm:"column:storehouse_id" json:"storehouse_id" form:"storehouse_id"`
  1048. }
  1049. type QueueCallConfig struct {
  1050. ID int64 `gorm:"column:id" json:"id" form:"id"`
  1051. OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
  1052. Qhsj int64 `gorm:"column:qhsj" json:"qhsj" form:"qhsj"`
  1053. Jzdcbbcs int64 `gorm:"column:jzdcbbcs" json:"jzdcbbcs" form:"jzdcbbcs"`
  1054. Jzbbsy int64 `gorm:"column:jzbbsy" json:"jzbbsy" form:"jzbbsy"`
  1055. Jzjhyc int64 `gorm:"column:jzjhyc" json:"jzjhyc" form:"jzjhyc"`
  1056. Sjdcbbcs int64 `gorm:"column:sjdcbbcs" json:"sjdcbbcs" form:"sjdcbbcs"`
  1057. Sjbbsy int64 `gorm:"column:sjbbsy" json:"sjbbsy" form:"sjbbsy"`
  1058. Sjjhyc int64 `gorm:"column:sjjhyc" json:"sjjhyc" form:"sjjhyc"`
  1059. Txxqyxs int64 `gorm:"column:txxqyxs" json:"txxqyxs" form:"txxqyxs"`
  1060. Txglsyxs int64 `gorm:"column:txglsyxs" json:"txglsyxs" form:"txglsyxs"`
  1061. CreateTime int64 `gorm:"column:create_time" json:"create_time" form:"create_time"`
  1062. UpdateTime int64 `gorm:"column:update_time" json:"update_time" form:"update_time"`
  1063. }
  1064. func (QueueCallConfig) TableName() string {
  1065. return "xt_queue_call_config"
  1066. }
  1067. type XtDialysisBeforePrepare struct {
  1068. ID int64 `gorm:"column:id" json:"id" form:"id"`
  1069. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  1070. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  1071. RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
  1072. GoodId int64 `gorm:"column:good_id" json:"good_id" form:"good_id"`
  1073. GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id" form:"good_type_id"`
  1074. Count int64 `gorm:"column:count" json:"count" form:"count"`
  1075. Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
  1076. Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
  1077. Creater int64 `gorm:"column:creater" json:"creater" form:"creater"`
  1078. Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
  1079. Status int64 `gorm:"column:status" json:"status" form:"status"`
  1080. CommdityCode string `gorm:"column:commdity_code" json:"commdity_code" form:"commdity_code"`
  1081. SpecificationName string `gorm:"column:specification_name" json:"specification_name" form:"specification_name"`
  1082. }
  1083. type BloodDoctorAdvice struct {
  1084. AdviceName string `gorm:"column:advice_name" json:"advice_name" form:"advice_name"`
  1085. AdviceDesc string `gorm:"column:advice_desc" json:"advice_desc" form:"advice_desc"`
  1086. DeliveryWay string `gorm:"column:delivery_way" json:"delivery_way" form:"delivery_way"`
  1087. Total int64
  1088. }
  1089. type HisDoctorAdvice struct {
  1090. ID int64 `gorm:"column:id" json:"id" form:"id"`
  1091. GroupNo int64 `gorm:"column:groupno" json:"groupno" form:"groupno"`
  1092. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  1093. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  1094. AdviceType int64 `gorm:"column:advice_type" json:"advice_type" form:"advice_type"`
  1095. AdviceDate int64 `gorm:"column:advice_date" json:"advice_date" form:"advice_date"`
  1096. StartTime int64 `gorm:"column:start_time" json:"start_time" form:"start_time"`
  1097. AdviceName string `gorm:"column:advice_name" json:"advice_name" form:"advice_name"`
  1098. AdviceDesc string `gorm:"column:advice_desc" json:"advice_desc" form:"advice_desc"`
  1099. ReminderDate int64 `gorm:"column:reminder_date" json:"reminder_date" form:"reminder_date"`
  1100. SingleDose float64 `gorm:"column:single_dose" json:"single_dose" form:"single_dose"`
  1101. SingleDoseUnit string `gorm:"column:single_dose_unit" json:"single_dose_unit" form:"single_dose_unit"`
  1102. DrugSpec float64 `gorm:"column:drug_spec" json:"drug_spec" form:"drug_spec"`
  1103. DrugSpecUnit string `gorm:"column:drug_spec_unit" json:"drug_spec_unit" form:"drug_spec_unit"`
  1104. PrescribingNumber float64 `gorm:"column:prescribing_number" json:"prescribing_number" form:"prescribing_number"`
  1105. PrescribingNumberUnit string `gorm:"column:prescribing_number_unit" json:"prescribing_number_unit" form:"prescribing_number_unit"`
  1106. DeliveryWay string `gorm:"column:delivery_way" json:"delivery_way" form:"delivery_way"`
  1107. ExecutionFrequency string `gorm:"column:execution_frequency" json:"execution_frequency" form:"execution_frequency"`
  1108. AdviceDoctor int64 `gorm:"column:advice_doctor" json:"advice_doctor" form:"advice_doctor"`
  1109. Status int64 `gorm:"column:status" json:"status" form:"status"`
  1110. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  1111. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
  1112. AdviceAffirm string `gorm:"column:advice_affirm" json:"advice_affirm" form:"advice_affirm"`
  1113. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  1114. StopTime int64 `gorm:"column:stop_time" json:"stop_time" form:"stop_time"`
  1115. StopReason string `gorm:"column:stop_reason" json:"stop_reason" form:"stop_reason"`
  1116. StopDoctor int64 `gorm:"column:stop_doctor" json:"stop_doctor" form:"stop_doctor"`
  1117. StopState int64 `gorm:"column:stop_state" json:"stop_state" form:"stop_state"`
  1118. ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
  1119. ExecutionTime int64 `gorm:"column:execution_time" json:"execution_time" form:"execution_time"`
  1120. ExecutionStaff int64 `gorm:"column:execution_staff" json:"execution_staff" form:"execution_staff"`
  1121. ExecutionState int64 `gorm:"column:execution_state" json:"execution_state" form:"execution_state"`
  1122. Checker int64 `gorm:"column:checker" json:"checker" form:"checker"`
  1123. RecordDate int64 `gorm:"column:record_date" json:"record_date"`
  1124. DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id"`
  1125. CheckTime int64 `gorm:"column:check_time" json:"check_time" form:"check_time"`
  1126. CheckState int64 `gorm:"column:check_state" json:"check_state" form:"check_state"`
  1127. AdviceId int64 `gorm:"-"`
  1128. RemindType int64 `gorm:"column:remind_type" json:"remind_type"`
  1129. FrequencyType int64 `gorm:"column:frequency_type" json:"frequency_type"`
  1130. DayCount int64 `gorm:"column:day_count" json:"day_count"`
  1131. WeekDay string `gorm:"column:week_day" json:"week_day"`
  1132. ChildDoctorAdvice []*HisDoctorAdvice `gorm:"ForeignKey:ParentId;AssociationForeignKey:ID" json:"child"`
  1133. TemplateId string `gorm:"column:template_id" json:"template_id"`
  1134. Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
  1135. IsCheck int64 `gorm:"-" json:"is_check" form:"is_check"`
  1136. Way int64 `gorm:"column:way" json:"way" form:"way"`
  1137. DrugId int64 `gorm:"column:drug_id" json:"drug_id" form:"drug_id"`
  1138. DrugNameId int64 `gorm:"column:drug_name_id" json:"drug_name_id" form:"drug_name_id"`
  1139. ExecutionFrequencyId int64 `gorm:"column:execution_frequency_id" json:"execution_frequency_id" form:"execution_frequency_id"`
  1140. }
  1141. func (HisDoctorAdvice) TableName() string {
  1142. return "his_doctor_advice_info"
  1143. }
  1144. type DialysisScheduleSix struct {
  1145. ID int64 `gorm:"column:id" json:"id" form:"id"`
  1146. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  1147. PartitionId int64 `gorm:"column:partition_id" json:"partition_id" form:"partition_id"`
  1148. BedId int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
  1149. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  1150. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date" form:"schedule_date"`
  1151. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type" form:"schedule_type"`
  1152. ScheduleWeek int64 `gorm:"column:schedule_week" json:"schedule_week" form:"schedule_week"`
  1153. ModeId int64 `gorm:"column:mode_id" json:"mode_id" form:"mode_id"`
  1154. Status int64 `gorm:"column:status" json:"status" form:"status"`
  1155. Name string `gorm:"column:name" json:"name" form:"name"`
  1156. }
  1157. type DialysisScheduleSeven struct {
  1158. ID int64 `gorm:"column:id" json:"id" form:"id"`
  1159. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  1160. PartitionId int64 `gorm:"column:partition_id" json:"partition_id" form:"partition_id"`
  1161. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type" form:"schedule_type"`
  1162. Status int64 `gorm:"column:status" json:"status" form:"status"`
  1163. }
  1164. func (DialysisScheduleSeven) TableName() string {
  1165. return "xt_schedule"
  1166. }