|
@@ -0,0 +1,400 @@
|
|
1
|
+package function_models
|
|
2
|
+
|
|
3
|
+type XtPatients struct {
|
|
4
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
5
|
+ UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
|
6
|
+ UserId int64 `gorm:"column:user_id" json:"user_id" form:"user_id"`
|
|
7
|
+ Avatar string `gorm:"column:avatar" json:"avatar" form:"avatar"`
|
|
8
|
+ PatientType int64 `gorm:"column:patient_type" json:"patient_type" form:"patient_type"`
|
|
9
|
+ DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no" form:"dialysis_no"`
|
|
10
|
+ AdmissionNumber string `gorm:"column:admission_number" json:"admission_number" form:"admission_number"`
|
|
11
|
+ Source int64 `gorm:"column:source" json:"source" form:"source"`
|
|
12
|
+ Lapseto int64 `gorm:"column:lapseto" json:"lapseto" form:"lapseto"`
|
|
13
|
+ PartitionId int64 `gorm:"column:partition_id" json:"partition_id" form:"partition_id"`
|
|
14
|
+ BedId int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
|
|
15
|
+ Name string `gorm:"column:name" json:"name" form:"name"`
|
|
16
|
+ Alias string `gorm:"column:alias" json:"alias" form:"alias"`
|
|
17
|
+ Gender int64 `gorm:"column:gender" json:"gender" form:"gender"`
|
|
18
|
+ MaritalStatus int64 `gorm:"column:marital_status" json:"marital_status" form:"marital_status"`
|
|
19
|
+ IdCardNo string `gorm:"column:id_card_no" json:"id_card_no" form:"id_card_no"`
|
|
20
|
+ Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
|
|
21
|
+ ReimbursementWayId int64 `gorm:"column:reimbursement_way_id" json:"reimbursement_way_id" form:"reimbursement_way_id"`
|
|
22
|
+ HealthCareType int64 `gorm:"column:health_care_type" json:"health_care_type" form:"health_care_type"`
|
|
23
|
+ HealthCareNo string `gorm:"column:health_care_no" json:"health_care_no" form:"health_care_no"`
|
|
24
|
+ HealthCareDueDate int64 `gorm:"column:health_care_due_date" json:"health_care_due_date" form:"health_care_due_date"`
|
|
25
|
+ Height int64 `gorm:"column:height" json:"height" form:"height"`
|
|
26
|
+ BloodType int64 `gorm:"column:blood_type" json:"blood_type" form:"blood_type"`
|
|
27
|
+ Rh int64 `gorm:"column:rh" json:"rh" form:"rh"`
|
|
28
|
+ HealthCareDueAlertDate int64 `gorm:"column:health_care_due_alert_date" json:"health_care_due_alert_date" form:"health_care_due_alert_date"`
|
|
29
|
+ EducationLevel int64 `gorm:"column:education_level" json:"education_level" form:"education_level"`
|
|
30
|
+ Profession int64 `gorm:"column:profession" json:"profession" form:"profession"`
|
|
31
|
+ Phone string `gorm:"column:phone" json:"phone" form:"phone"`
|
|
32
|
+ HomeTelephone string `gorm:"column:home_telephone" json:"home_telephone" form:"home_telephone"`
|
|
33
|
+ RelativePhone string `gorm:"column:relative_phone" json:"relative_phone" form:"relative_phone"`
|
|
34
|
+ RelativeRelations string `gorm:"column:relative_relations" json:"relative_relations" form:"relative_relations"`
|
|
35
|
+ HomeAddress string `gorm:"column:home_address" json:"home_address" form:"home_address"`
|
|
36
|
+ WorkUnit string `gorm:"column:work_unit" json:"work_unit" form:"work_unit"`
|
|
37
|
+ UnitAddress string `gorm:"column:unit_address" json:"unit_address" form:"unit_address"`
|
|
38
|
+ Children int64 `gorm:"column:children" json:"children" form:"children"`
|
|
39
|
+ ReceivingDate int64 `gorm:"column:receiving_date" json:"receiving_date" form:"receiving_date"`
|
|
40
|
+ IsHospitalFirstDialysis int64 `gorm:"column:is_hospital_first_dialysis" json:"is_hospital_first_dialysis" form:"is_hospital_first_dialysis"`
|
|
41
|
+ FirstDialysisDate int64 `gorm:"column:first_dialysis_date" json:"first_dialysis_date" form:"first_dialysis_date"`
|
|
42
|
+ FirstDialysisHospital string `gorm:"column:first_dialysis_hospital" json:"first_dialysis_hospital" form:"first_dialysis_hospital"`
|
|
43
|
+ PredialysisCondition string `gorm:"column:predialysis_condition" json:"predialysis_condition" form:"predialysis_condition"`
|
|
44
|
+ PreHospitalDialysisFrequency string `gorm:"column:pre_hospital_dialysis_frequency" json:"pre_hospital_dialysis_frequency" form:"pre_hospital_dialysis_frequency"`
|
|
45
|
+ PreHospitalDialysisTimes int64 `gorm:"column:pre_hospital_dialysis_times" json:"pre_hospital_dialysis_times" form:"pre_hospital_dialysis_times"`
|
|
46
|
+ HospitalFirstDialysisDate int64 `gorm:"column:hospital_first_dialysis_date" json:"hospital_first_dialysis_date" form:"hospital_first_dialysis_date"`
|
|
47
|
+ InductionPeriod int64 `gorm:"column:induction_period" json:"induction_period" form:"induction_period"`
|
|
48
|
+ InitialDialysis int64 `gorm:"column:initial_dialysis" json:"initial_dialysis" form:"initial_dialysis"`
|
|
49
|
+ TotalDialysis int64 `gorm:"column:total_dialysis" json:"total_dialysis" form:"total_dialysis"`
|
|
50
|
+ AttendingDoctorId int64 `gorm:"column:attending_doctor_id" json:"attending_doctor_id" form:"attending_doctor_id"`
|
|
51
|
+ HeadNurseId int64 `gorm:"column:head_nurse_id" json:"head_nurse_id" form:"head_nurse_id"`
|
|
52
|
+ Evaluate string `gorm:"column:evaluate" json:"evaluate" form:"evaluate"`
|
|
53
|
+ Diagnose string `gorm:"column:diagnose" json:"diagnose" form:"diagnose"`
|
|
54
|
+ Remark string `gorm:"column:remark" json:"remark" form:"remark"`
|
|
55
|
+ RegistrarsId int64 `gorm:"column:registrars_id" json:"registrars_id" form:"registrars_id"`
|
|
56
|
+ Registrars string `gorm:"column:registrars" json:"registrars" form:"registrars"`
|
|
57
|
+ QrCode string `gorm:"column:qr_code" json:"qr_code" form:"qr_code"`
|
|
58
|
+ BindingState int64 `gorm:"column:binding_state" json:"binding_state" form:"binding_state"`
|
|
59
|
+ PatientComplains string `gorm:"column:patient_complains" json:"patient_complains" form:"patient_complains"`
|
|
60
|
+ PresentHistory string `gorm:"column:present_history" json:"present_history" form:"present_history"`
|
|
61
|
+ PastHistory string `gorm:"column:past_history" json:"past_history" form:"past_history"`
|
|
62
|
+ Temperature float64 `gorm:"column:temperature" json:"temperature" form:"temperature"`
|
|
63
|
+ Pulse int64 `gorm:"column:pulse" json:"pulse" form:"pulse"`
|
|
64
|
+ Respiratory int64 `gorm:"column:respiratory" json:"respiratory" form:"respiratory"`
|
|
65
|
+ Sbp int64 `gorm:"column:sbp" json:"sbp" form:"sbp"`
|
|
66
|
+ Dbp int64 `gorm:"column:dbp" json:"dbp" form:"dbp"`
|
|
67
|
+ Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
68
|
+ CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
|
|
69
|
+ UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
|
|
70
|
+ Nation string `gorm:"column:nation" json:"nation" form:"nation"`
|
|
71
|
+ NativePlace string `gorm:"column:native_place" json:"native_place" form:"native_place"`
|
|
72
|
+ Age int64 `gorm:"column:age" json:"age" form:"age"`
|
|
73
|
+}
|
|
74
|
+
|
|
75
|
+func (XtPatients) TableName() string {
|
|
76
|
+ return "xt_patients"
|
|
77
|
+}
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+type XtDialysisPrescription struct {
|
|
81
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
82
|
+ UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
|
83
|
+ PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
|
|
84
|
+ Dialyzer int64 `gorm:"column:dialyzer" json:"dialyzer" form:"dialyzer"`
|
|
85
|
+ MachineType string `gorm:"column:machine_type" json:"machine_type" form:"machine_type"`
|
|
86
|
+ DewaterAmount float64 `gorm:"column:dewater_amount" json:"dewater_amount" form:"dewater_amount"`
|
|
87
|
+ DialyzerPerfusionApparatus string `gorm:"column:dialyzer_perfusion_apparatus" json:"dialyzer_perfusion_apparatus" form:"dialyzer_perfusion_apparatus"`
|
|
88
|
+ PrescriptionDewatering float64 `gorm:"column:prescription_dewatering" json:"prescription_dewatering" form:"prescription_dewatering"`
|
|
89
|
+ Anticoagulant int64 `gorm:"column:anticoagulant" json:"anticoagulant" form:"anticoagulant"`
|
|
90
|
+ AnticoagulantShouji float64 `gorm:"column:anticoagulant_shouji" json:"anticoagulant_shouji" form:"anticoagulant_shouji"`
|
|
91
|
+ AnticoagulantWeichi float64 `gorm:"column:anticoagulant_weichi" json:"anticoagulant_weichi" form:"anticoagulant_weichi"`
|
|
92
|
+ AnticoagulantZongliang float64 `gorm:"column:anticoagulant_zongliang" json:"anticoagulant_zongliang" form:"anticoagulant_zongliang"`
|
|
93
|
+ AnticoagulantGaimingcheng string `gorm:"column:anticoagulant_gaimingcheng" json:"anticoagulant_gaimingcheng" form:"anticoagulant_gaimingcheng"`
|
|
94
|
+ AnticoagulantGaijiliang string `gorm:"column:anticoagulant_gaijiliang" json:"anticoagulant_gaijiliang" form:"anticoagulant_gaijiliang"`
|
|
95
|
+ ModeId int64 `gorm:"column:mode_id" json:"mode_id" form:"mode_id"`
|
|
96
|
+ DialysisDurationHour int64 `gorm:"column:dialysis_duration_hour" json:"dialysis_duration_hour" form:"dialysis_duration_hour"`
|
|
97
|
+ DialysisDurationMinute int64 `gorm:"column:dialysis_duration_minute" json:"dialysis_duration_minute" form:"dialysis_duration_minute"`
|
|
98
|
+ DialysisDuration float64 `gorm:"column:dialysis_duration" json:"dialysis_duration" form:"dialysis_duration"`
|
|
99
|
+ ReplacementTotal float64 `gorm:"column:replacement_total" json:"replacement_total" form:"replacement_total"`
|
|
100
|
+ ReplacementWay int64 `gorm:"column:replacement_way" json:"replacement_way" form:"replacement_way"`
|
|
101
|
+ HemodialysisMachine int64 `gorm:"column:hemodialysis_machine" json:"hemodialysis_machine" form:"hemodialysis_machine"`
|
|
102
|
+ BloodFilter int64 `gorm:"column:blood_filter" json:"blood_filter" form:"blood_filter"`
|
|
103
|
+ PerfusionApparatus int64 `gorm:"column:perfusion_apparatus" json:"perfusion_apparatus" form:"perfusion_apparatus"`
|
|
104
|
+ DryWeight float64 `gorm:"column:dry_weight" json:"dry_weight" form:"dry_weight"`
|
|
105
|
+ VascularAccessMode int64 `gorm:"column:vascular_access_mode" json:"vascular_access_mode" form:"vascular_access_mode"`
|
|
106
|
+ VascularAccess int64 `gorm:"column:vascular_access" json:"vascular_access" form:"vascular_access"`
|
|
107
|
+ BloodFlowVolume float64 `gorm:"column:blood_flow_volume" json:"blood_flow_volume" form:"blood_flow_volume"`
|
|
108
|
+ DialysateFlow float64 `gorm:"column:dialysate_flow" json:"dialysate_flow" form:"dialysate_flow"`
|
|
109
|
+ DisplaceLiqui float64 `gorm:"column:displace_liqui" json:"displace_liqui" form:"displace_liqui"`
|
|
110
|
+ Kalium float64 `gorm:"column:kalium" json:"kalium" form:"kalium"`
|
|
111
|
+ Sodium float64 `gorm:"column:sodium" json:"sodium" form:"sodium"`
|
|
112
|
+ Calcium float64 `gorm:"column:calcium" json:"calcium" form:"calcium"`
|
|
113
|
+ Bicarbonate float64 `gorm:"column:bicarbonate" json:"bicarbonate" form:"bicarbonate"`
|
|
114
|
+ Glucose float64 `gorm:"column:glucose" json:"glucose" form:"glucose"`
|
|
115
|
+ DialysateTemperature float64 `gorm:"column:dialysate_temperature" json:"dialysate_temperature" form:"dialysate_temperature"`
|
|
116
|
+ Conductivity float64 `gorm:"column:conductivity" json:"conductivity" form:"conductivity"`
|
|
117
|
+ PrescriptionDoctor int64 `gorm:"column:prescription_doctor" json:"prescription_doctor" form:"prescription_doctor"`
|
|
118
|
+ Creater int64 `gorm:"column:creater" json:"creater" form:"creater"`
|
|
119
|
+ Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
|
|
120
|
+ Remark string `gorm:"column:remark" json:"remark" form:"remark"`
|
|
121
|
+ Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
122
|
+ CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
|
|
123
|
+ UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
|
|
124
|
+ RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
|
|
125
|
+ RecordId int64 `gorm:"column:record_id" json:"record_id" form:"record_id"`
|
|
126
|
+ TargetUltrafiltration float64 `gorm:"column:target_ultrafiltration" json:"target_ultrafiltration" form:"target_ultrafiltration"`
|
|
127
|
+ DialysateFormulation int64 `gorm:"column:dialysate_formulation" json:"dialysate_formulation" form:"dialysate_formulation"`
|
|
128
|
+ BodyFluid int64 `gorm:"column:body_fluid" json:"body_fluid" form:"body_fluid"`
|
|
129
|
+ SpecialMedicine int64 `gorm:"column:special_medicine" json:"special_medicine" form:"special_medicine"`
|
|
130
|
+ SpecialMedicineOther string `gorm:"column:special_medicine_other" json:"special_medicine_other" form:"special_medicine_other"`
|
|
131
|
+ DisplaceLiquiPart int64 `gorm:"column:displace_liqui_part" json:"displace_liqui_part" form:"displace_liqui_part"`
|
|
132
|
+ BloodAccess int64 `gorm:"column:blood_access" json:"blood_access" form:"blood_access"`
|
|
133
|
+ DisplaceLiquiValue float64 `gorm:"column:displace_liqui_value" json:"displace_liqui_value" form:"displace_liqui_value"`
|
|
134
|
+ Ultrafiltration float64 `gorm:"column:ultrafiltration" json:"ultrafiltration" form:"ultrafiltration"`
|
|
135
|
+ BodyFluidOther string `gorm:"column:body_fluid_other" json:"body_fluid_other" form:"body_fluid_other"`
|
|
136
|
+ Niprocart int64 `gorm:"column:niprocart" json:"niprocart" form:"niprocart"`
|
|
137
|
+ Jms int64 `gorm:"column:jms" json:"jms" form:"jms"`
|
|
138
|
+ FistulaNeedleSet int64 `gorm:"column:fistula_needle_set" json:"fistula_needle_set" form:"fistula_needle_set"`
|
|
139
|
+ FistulaNeedleSet16 int64 `gorm:"column:fistula_needle_set_16" json:"fistula_needle_set_16" form:"fistula_needle_set_16"`
|
|
140
|
+ Hemoperfusion int64 `gorm:"column:hemoperfusion" json:"hemoperfusion" form:"hemoperfusion"`
|
|
141
|
+ DialyserSterilised int64 `gorm:"column:dialyser_sterilised" json:"dialyser_sterilised" form:"dialyser_sterilised"`
|
|
142
|
+ Filtryzer int64 `gorm:"column:filtryzer" json:"filtryzer" form:"filtryzer"`
|
|
143
|
+ TargetKtv float64 `gorm:"column:target_ktv" json:"target_ktv" form:"target_ktv"`
|
|
144
|
+ Dialyzers int64 `gorm:"column:dialyzers" json:"dialyzers" form:"dialyzers"`
|
|
145
|
+ Injector int64 `gorm:"column:injector" json:"injector" form:"injector"`
|
|
146
|
+ Bloodlines int64 `gorm:"column:bloodlines" json:"bloodlines" form:"bloodlines"`
|
|
147
|
+ TubingHemodialysis int64 `gorm:"column:tubing_hemodialysis" json:"tubing_hemodialysis" form:"tubing_hemodialysis"`
|
|
148
|
+ Package int64 `gorm:"column:package" json:"package" form:"package"`
|
|
149
|
+ ALiquid int64 `gorm:"column:a_liquid" json:"a_liquid" form:"a_liquid"`
|
|
150
|
+}
|
|
151
|
+
|
|
152
|
+func (XtDialysisPrescription) TableName() string {
|
|
153
|
+ return "xt_dialysis_prescription"
|
|
154
|
+}
|
|
155
|
+
|
|
156
|
+type XtReceiveTreatmentAsses struct {
|
|
157
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
158
|
+ Way int64 `gorm:"column:way" json:"way" form:"way"`
|
|
159
|
+ Consciousness int64 `gorm:"column:consciousness" json:"consciousness" form:"consciousness"`
|
|
160
|
+ Appetite int64 `gorm:"column:appetite" json:"appetite" form:"appetite"`
|
|
161
|
+ Condition int64 `gorm:"column:condition" json:"condition" form:"condition"`
|
|
162
|
+ Creater int64 `gorm:"column:creater" json:"creater" form:"creater"`
|
|
163
|
+ Posture int64 `gorm:"column:posture" json:"posture" form:"posture"`
|
|
164
|
+ CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
|
|
165
|
+ UpdateTime int64 `gorm:"column:update_time" json:"update_time" form:"update_time"`
|
|
166
|
+ RecordId int64 `gorm:"column:record_id" json:"record_id" form:"record_id"`
|
|
167
|
+ RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
|
|
168
|
+ Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
|
|
169
|
+ Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
170
|
+ UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
|
171
|
+ PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
|
|
172
|
+ SickCondition int64 `gorm:"column:sick_condition" json:"sick_condition" form:"sick_condition"`
|
|
173
|
+ SickConditionOther string `gorm:"column:sick_condition_other" json:"sick_condition_other" form:"sick_condition_other"`
|
|
174
|
+ DangerLevel int64 `gorm:"column:danger_level" json:"danger_level" form:"danger_level"`
|
|
175
|
+ Intake int64 `gorm:"column:intake" json:"intake" form:"intake"`
|
|
176
|
+ Nutrition int64 `gorm:"column:nutrition" json:"nutrition" form:"nutrition"`
|
|
177
|
+ PsychologicalAssessment int64 `gorm:"column:psychological_assessment" json:"psychological_assessment" form:"psychological_assessment"`
|
|
178
|
+ PsychologicalAssessmentOther string `gorm:"column:psychological_assessment_other" json:"psychological_assessment_other" form:"psychological_assessment_other"`
|
|
179
|
+ IsPrecaution int64 `gorm:"column:is_precaution" json:"is_precaution" form:"is_precaution"`
|
|
180
|
+ Score string `gorm:"column:score" json:"score" form:"score"`
|
|
181
|
+ Precaution int64 `gorm:"column:precaution" json:"precaution" form:"precaution"`
|
|
182
|
+ PrecautionOther string `gorm:"column:precaution_other" json:"precaution_other" form:"precaution_other"`
|
|
183
|
+ PsychologicalOther string `gorm:"column:psychological_other" json:"psychological_other" form:"psychological_other"`
|
|
184
|
+}
|
|
185
|
+
|
|
186
|
+func (XtReceiveTreatmentAsses) TableName() string {
|
|
187
|
+ return "xt_receive_treatement_asses"
|
|
188
|
+}
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+type XtAssessmentBeforeDislysis struct {
|
|
192
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
193
|
+ UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
|
194
|
+ PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
|
|
195
|
+ AssessmentDate int64 `gorm:"column:assessment_date" json:"assessment_date" form:"assessment_date"`
|
|
196
|
+ DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id" form:"dialysis_order_id"`
|
|
197
|
+ Temperature float64 `gorm:"column:temperature" json:"temperature" form:"temperature"`
|
|
198
|
+ PulseFrequency float64 `gorm:"column:pulse_frequency" json:"pulse_frequency" form:"pulse_frequency"`
|
|
199
|
+ BreathingRate float64 `gorm:"column:breathing_rate" json:"breathing_rate" form:"breathing_rate"`
|
|
200
|
+ SystolicBloodPressure float64 `gorm:"column:systolic_blood_pressure" json:"systolic_blood_pressure" form:"systolic_blood_pressure"`
|
|
201
|
+ DiastolicBloodPressure float64 `gorm:"column:diastolic_blood_pressure" json:"diastolic_blood_pressure" form:"diastolic_blood_pressure"`
|
|
202
|
+ BloodPressureType int64 `gorm:"column:blood_pressure_type" json:"blood_pressure_type" form:"blood_pressure_type"`
|
|
203
|
+ DryWeight float64 `gorm:"column:dry_weight" json:"dry_weight" form:"dry_weight"`
|
|
204
|
+ WeightAfterLastTransparency float64 `gorm:"column:weight_after_last_transparency" json:"weight_after_last_transparency" form:"weight_after_last_transparency"`
|
|
205
|
+ WeighingWay string `gorm:"column:weighing_way" json:"weighing_way" form:"weighing_way"`
|
|
206
|
+ WeighingBefore float64 `gorm:"column:weighing_before" json:"weighing_before" form:"weighing_before"`
|
|
207
|
+ AdditionalWeight float64 `gorm:"column:additional_weight" json:"additional_weight" form:"additional_weight"`
|
|
208
|
+ WeightBefore float64 `gorm:"column:weight_before" json:"weight_before" form:"weight_before"`
|
|
209
|
+ WeightGain float64 `gorm:"column:weight_gain" json:"weight_gain" form:"weight_gain"`
|
|
210
|
+ PreloadedDewatering float64 `gorm:"column:preloaded_dewatering" json:"preloaded_dewatering" form:"preloaded_dewatering"`
|
|
211
|
+ UltrafiltrationAmount float64 `gorm:"column:ultrafiltration_amount" json:"ultrafiltration_amount" form:"ultrafiltration_amount"`
|
|
212
|
+ DialysisInterphase string `gorm:"column:dialysis_interphase" json:"dialysis_interphase" form:"dialysis_interphase"`
|
|
213
|
+ LastPostDialysis string `gorm:"column:last_post_dialysis" json:"last_post_dialysis" form:"last_post_dialysis"`
|
|
214
|
+ SymptomBeforeDialysis string `gorm:"column:symptom_before_dialysis" json:"symptom_before_dialysis" form:"symptom_before_dialysis"`
|
|
215
|
+ InternalFistula string `gorm:"column:internal_fistula" json:"internal_fistula" form:"internal_fistula"`
|
|
216
|
+ InternalFistulaSkin string `gorm:"column:internal_fistula_skin" json:"internal_fistula_skin" form:"internal_fistula_skin"`
|
|
217
|
+ CatheterBend int64 `gorm:"column:catheter_bend" json:"catheter_bend" form:"catheter_bend"`
|
|
218
|
+ Catheter string `gorm:"column:catheter" json:"catheter" form:"catheter"`
|
|
219
|
+ Complication string `gorm:"column:complication" json:"complication" form:"complication"`
|
|
220
|
+ Evaluator int64 `gorm:"column:evaluator" json:"evaluator" form:"evaluator"`
|
|
221
|
+ Creater int64 `gorm:"column:creater" json:"creater" form:"creater"`
|
|
222
|
+ Remark string `gorm:"column:remark" json:"remark" form:"remark"`
|
|
223
|
+ Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
224
|
+ CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
|
|
225
|
+ UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
|
|
226
|
+ Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
|
|
227
|
+ BloodAccessPartId int64 `gorm:"column:blood_access_part_id" json:"blood_access_part_id" form:"blood_access_part_id"`
|
|
228
|
+ BloodAccessPartOperaId int64 `gorm:"column:blood_access_part_opera_id" json:"blood_access_part_opera_id" form:"blood_access_part_opera_id"`
|
|
229
|
+ IsHemorrhage int64 `gorm:"column:is_hemorrhage" json:"is_hemorrhage" form:"is_hemorrhage"`
|
|
230
|
+ Hemorrhage string `gorm:"column:hemorrhage" json:"hemorrhage" form:"hemorrhage"`
|
|
231
|
+ HemorrhageOther string `gorm:"column:hemorrhage_other" json:"hemorrhage_other" form:"hemorrhage_other"`
|
|
232
|
+ PunctureMethod string `gorm:"column:puncture_method" json:"puncture_method" form:"puncture_method"`
|
|
233
|
+ BloodAccessInternalFistula string `gorm:"column:blood_access_internal_fistula" json:"blood_access_internal_fistula" form:"blood_access_internal_fistula"`
|
|
234
|
+ InternalFistulaOther string `gorm:"column:internal_fistula_other" json:"internal_fistula_other" form:"internal_fistula_other"`
|
|
235
|
+ BloodAccessNoise int64 `gorm:"column:blood_access_noise" json:"blood_access_noise" form:"blood_access_noise"`
|
|
236
|
+ PunctureWay int64 `gorm:"column:puncture_way" json:"puncture_way" form:"puncture_way"`
|
|
237
|
+ VenousCatheterization int64 `gorm:"column:venous_catheterization" json:"venous_catheterization" form:"venous_catheterization"`
|
|
238
|
+ VenousCatheterizationPart int64 `gorm:"column:venous_catheterization_part" json:"venous_catheterization_part" form:"venous_catheterization_part"`
|
|
239
|
+ VenousCatheterizationPartOther string `gorm:"column:venous_catheterization_part_other" json:"venous_catheterization_part_other" form:"venous_catheterization_part_other"`
|
|
240
|
+ DuctusArantii string `gorm:"column:ductus_arantii" json:"ductus_arantii" form:"ductus_arantii"`
|
|
241
|
+ EmergencyTreatment int64 `gorm:"column:emergency_treatment" json:"emergency_treatment" form:"emergency_treatment"`
|
|
242
|
+ EmergencyTreatmentOther string `gorm:"column:emergency_treatment_other" json:"emergency_treatment_other" form:"emergency_treatment_other"`
|
|
243
|
+ DialysisCount int64 `gorm:"column:dialysis_count" json:"dialysis_count" form:"dialysis_count"`
|
|
244
|
+ AssessmentDoctor int64 `gorm:"column:assessment_doctor" json:"assessment_doctor" form:"assessment_doctor"`
|
|
245
|
+ AssessmentTime int64 `gorm:"column:assessment_time" json:"assessment_time" form:"assessment_time"`
|
|
246
|
+ MachineType string `gorm:"column:machine_type" json:"machine_type" form:"machine_type"`
|
|
247
|
+ IsInfect int64 `gorm:"column:is_infect" json:"is_infect" form:"is_infect"`
|
|
248
|
+ Exposed float64 `gorm:"column:exposed" json:"exposed" form:"exposed"`
|
|
249
|
+ Skin int64 `gorm:"column:skin" json:"skin" form:"skin"`
|
|
250
|
+ SkinOther string `gorm:"column:skin_other" json:"skin_other" form:"skin_other"`
|
|
251
|
+ InfectOther string `gorm:"column:infect_other" json:"infect_other" form:"infect_other"`
|
|
252
|
+ DuctusArantiiOther string `gorm:"column:ductus_arantii_other" json:"ductus_arantii_other" form:"ductus_arantii_other"`
|
|
253
|
+}
|
|
254
|
+
|
|
255
|
+func (XtAssessmentBeforeDislysis) TableName() string {
|
|
256
|
+ return "xt_assessment_before_dislysis"
|
|
257
|
+}
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+type DoctorAdvice struct {
|
|
261
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
262
|
+ GroupNo int64 `gorm:"column:groupno" json:"groupno" form:"groupno"`
|
|
263
|
+ UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
|
264
|
+ PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
|
|
265
|
+ AdviceType int64 `gorm:"column:advice_type" json:"advice_type" form:"advice_type"`
|
|
266
|
+ AdviceDate int64 `gorm:"column:advice_date" json:"advice_date" form:"advice_date"`
|
|
267
|
+ StartTime int64 `gorm:"column:start_time" json:"start_time" form:"start_time"`
|
|
268
|
+ AdviceName string `gorm:"column:advice_name" json:"advice_name" form:"advice_name"`
|
|
269
|
+ AdviceDesc string `gorm:"column:advice_desc" json:"advice_desc" form:"advice_desc"`
|
|
270
|
+ ReminderDate int64 `gorm:"column:reminder_date" json:"reminder_date" form:"reminder_date"`
|
|
271
|
+ SingleDose float64 `gorm:"column:single_dose" json:"single_dose" form:"single_dose"`
|
|
272
|
+ SingleDoseUnit string `gorm:"column:single_dose_unit" json:"single_dose_unit" form:"single_dose_unit"`
|
|
273
|
+ DrugSpec float64 `gorm:"column:drug_spec" json:"drug_spec" form:"drug_spec"`
|
|
274
|
+ DrugSpecUnit string `gorm:"column:drug_spec_unit" json:"drug_spec_unit" form:"drug_spec_unit"`
|
|
275
|
+ PrescribingNumber float64 `gorm:"column:prescribing_number" json:"prescribing_number" form:"prescribing_number"`
|
|
276
|
+ PrescribingNumberUnit string `gorm:"column:prescribing_number_unit" json:"prescribing_number_unit" form:"prescribing_number_unit"`
|
|
277
|
+ DeliveryWay string `gorm:"column:delivery_way" json:"delivery_way" form:"delivery_way"`
|
|
278
|
+ ExecutionFrequency string `gorm:"column:execution_frequency" json:"execution_frequency" form:"execution_frequency"`
|
|
279
|
+ AdviceDoctor int64 `gorm:"column:advice_doctor" json:"advice_doctor" form:"advice_doctor"`
|
|
280
|
+ Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
281
|
+ CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
|
|
282
|
+ UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
|
|
283
|
+ AdviceAffirm string `gorm:"column:advice_affirm" json:"advice_affirm" form:"advice_affirm"`
|
|
284
|
+ Remark string `gorm:"column:remark" json:"remark" form:"remark"`
|
|
285
|
+ StopTime int64 `gorm:"column:stop_time" json:"stop_time" form:"stop_time"`
|
|
286
|
+ StopReason string `gorm:"column:stop_reason" json:"stop_reason" form:"stop_reason"`
|
|
287
|
+ StopDoctor int64 `gorm:"column:stop_doctor" json:"stop_doctor" form:"stop_doctor"`
|
|
288
|
+ StopState int64 `gorm:"column:stop_state" json:"stop_state" form:"stop_state"`
|
|
289
|
+ ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
|
|
290
|
+ ExecutionTime int64 `gorm:"column:execution_time" json:"execution_time" form:"execution_time"`
|
|
291
|
+ ExecutionStaff int64 `gorm:"column:execution_staff" json:"execution_staff" form:"execution_staff"`
|
|
292
|
+ ExecutionState int64 `gorm:"column:execution_state" json:"execution_state" form:"execution_state"`
|
|
293
|
+ Checker int64 `gorm:"column:checker" json:"checker" form:"checker"`
|
|
294
|
+ RecordDate int64 `gorm:"column:record_date" json:"record_date"`
|
|
295
|
+ DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id"`
|
|
296
|
+ CheckTime int64 `gorm:"column:check_time" json:"check_time" form:"check_time"`
|
|
297
|
+ CheckState int64 `gorm:"column:check_state" json:"check_state" form:"check_state"`
|
|
298
|
+ AdviceId int64 `gorm:"-"`
|
|
299
|
+}
|
|
300
|
+
|
|
301
|
+func (DoctorAdvice) TableName() string {
|
|
302
|
+ return "xt_doctor_advice"
|
|
303
|
+}
|
|
304
|
+
|
|
305
|
+type DoubleCheck struct {
|
|
306
|
+ ID int64 `gorm:"column:id" json:"id"`
|
|
307
|
+ UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
|
|
308
|
+ PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
|
|
309
|
+ DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id"`
|
|
310
|
+ CheckDate int64 `gorm:"column:check_date" json:"check_date"`
|
|
311
|
+ DialysisItemCheck int64 `gorm:"column:dialysis_item_check" json:"dialysis_item_check"`
|
|
312
|
+ DialysisItemDesc string `gorm:"column:dialysis_item_desc" json:"dialysis_item_desc"`
|
|
313
|
+ DialysisParameterCheck int64 `gorm:"column:dialysis_parameter_check" json:"dialysis_parameter_check"`
|
|
314
|
+ DialysisParameterDesc string `gorm:"column:dialysis_parameter_desc" json:"dialysis_parameter_desc"`
|
|
315
|
+ VascularAccessVerification int64 `gorm:"column:vascular_access_verification" json:"vascular_access_verification"`
|
|
316
|
+ VascularAccessDesc string `gorm:"column:vascular_access_desc" json:"vascular_access_desc"`
|
|
317
|
+ PipelineConnectionCheck int64 `gorm:"column:pipeline_connection_check" json:"pipeline_connection_check"`
|
|
318
|
+ PipelineConnectionDesc string `gorm:"column:pipeline_connection_desc" json:"pipeline_connection_desc"`
|
|
319
|
+ Collator int64 `gorm:"column:collator" json:"collator"`
|
|
320
|
+ Status int64 `gorm:"column:status" json:"status"`
|
|
321
|
+ CreatedTime int64 `gorm:"column:created_time" json:"created_time"`
|
|
322
|
+ UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time"`
|
|
323
|
+ Creater int64 `gorm:"column:creater" json:"creater"`
|
|
324
|
+ Modifier int64 `gorm:"column:modifier" json:"modifier"`
|
|
325
|
+ CheckTime int64 `gorm:"column:check_time" json:"check_time"`
|
|
326
|
+ FirstCheckTime int64 `gorm:"column:first_check_time" json:"first_check_time"`
|
|
327
|
+}
|
|
328
|
+
|
|
329
|
+func (DoubleCheck) TableName() string {
|
|
330
|
+ return "xt_double_check"
|
|
331
|
+}
|
|
332
|
+
|
|
333
|
+type DialysisOrder struct {
|
|
334
|
+ ID int64 `gorm:"column:id" json:"id"`
|
|
335
|
+ DialysisDate int64 `gorm:"column:dialysis_date" json:"dialysis_date"`
|
|
336
|
+ UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
|
|
337
|
+ PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
|
|
338
|
+ PrescriptionId int64 `gorm:"column:prescription_id" json:"prescription_id"`
|
|
339
|
+ Stage int64 `gorm:"column:stage" json:"stage"`
|
|
340
|
+ Remark string `gorm:"column:remark" json:"remark"`
|
|
341
|
+ BedID int64 `gorm:"column:bed_id" json:"bed_id"`
|
|
342
|
+ StartNurse int64 `gorm:"column:start_nurse" json:"start_nurse"`
|
|
343
|
+ FinishNurse int64 `gorm:"column:finish_nurse" json:"finish_nurse"`
|
|
344
|
+ Status int64 `gorm:"column:status" json:"status"`
|
|
345
|
+ CreatedTime int64 `gorm:"column:created_time" json:"created_time"`
|
|
346
|
+ UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time"`
|
|
347
|
+ StartTime int64 `gorm:"column:start_time" json:"start_time"`
|
|
348
|
+ EndTime int64 `gorm:"column:end_time" json:"end_time"`
|
|
349
|
+ PunctureNurse int64 `gorm:"column:puncture_nurse" json:"puncture_nurse"`
|
|
350
|
+ Creator int64 `gorm:"column:creator" json:"creator"`
|
|
351
|
+ Modifier int64 `gorm:"column:modifier" json:"modifier"`
|
|
352
|
+ FinishCreator int64 `gorm:"column:finish_creator" json:"finish_creator"`
|
|
353
|
+ FinishModifier int64 `gorm:"column:finish_modifier" json:"finish_modifier"`
|
|
354
|
+}
|
|
355
|
+
|
|
356
|
+func (DialysisOrder) TableName() string {
|
|
357
|
+ return "xt_dialysis_order"
|
|
358
|
+}
|
|
359
|
+
|
|
360
|
+type SgjUserOrg struct {
|
|
361
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
362
|
+ Creator int64 `gorm:"column:creator" json:"creator" form:"creator"`
|
|
363
|
+ OrgName string `gorm:"column:org_name" json:"org_name" form:"org_name"`
|
|
364
|
+ OrgShortName string `gorm:"column:org_short_name" json:"org_short_name" form:"org_short_name"`
|
|
365
|
+ OrgLogo string `gorm:"column:org_logo" json:"org_logo" form:"org_logo"`
|
|
366
|
+ OrgIntroduction string `gorm:"column:org_introduction" json:"org_introduction" form:"org_introduction"`
|
|
367
|
+ Illness string `gorm:"column:illness" json:"illness" form:"illness"`
|
|
368
|
+ Province int64 `gorm:"column:province" json:"province" form:"province"`
|
|
369
|
+ City int64 `gorm:"column:city" json:"city" form:"city"`
|
|
370
|
+ District int64 `gorm:"column:district" json:"district" form:"district"`
|
|
371
|
+ Address string `gorm:"column:address" json:"address" form:"address"`
|
|
372
|
+ Longitude string `gorm:"column:longitude" json:"longitude" form:"longitude"`
|
|
373
|
+ Latitude string `gorm:"column:latitude" json:"latitude" form:"latitude"`
|
|
374
|
+ OrgType int64 `gorm:"column:org_type" json:"org_type" form:"org_type"`
|
|
375
|
+ Comments int64 `gorm:"column:comments" json:"comments" form:"comments"`
|
|
376
|
+ Evaluate float64 `gorm:"column:evaluate" json:"evaluate" form:"evaluate"`
|
|
377
|
+ Gallery string `gorm:"column:gallery" json:"gallery" form:"gallery"`
|
|
378
|
+ BusinessWeek string `gorm:"column:business_week" json:"business_week" form:"business_week"`
|
|
379
|
+ BusinessTime string `gorm:"column:business_time" json:"business_time" form:"business_time"`
|
|
380
|
+ ContactName string `gorm:"column:contact_name" json:"contact_name" form:"contact_name"`
|
|
381
|
+ Telephone string `gorm:"column:telephone" json:"telephone" form:"telephone"`
|
|
382
|
+ Claim int64 `gorm:"column:claim" json:"claim" form:"claim"`
|
|
383
|
+ OperatingState int64 `gorm:"column:operating_state" json:"operating_state" form:"operating_state"`
|
|
384
|
+ Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
385
|
+ Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
|
|
386
|
+ Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
|
|
387
|
+ Source int64 `gorm:"column:source" json:"source" form:"source"`
|
|
388
|
+ Ttype int64 `gorm:"column:ttype" json:"ttype" form:"ttype"`
|
|
389
|
+ Ttid int64 `gorm:"column:ttid" json:"ttid" form:"ttid"`
|
|
390
|
+ Tuid int64 `gorm:"column:tuid" json:"tuid" form:"tuid"`
|
|
391
|
+ Reason string `gorm:"column:reason" json:"reason" form:"reason"`
|
|
392
|
+ Level int64 `gorm:"column:level" json:"level" form:"level"`
|
|
393
|
+ Website string `gorm:"column:website" json:"website" form:"website"`
|
|
394
|
+ Import int64 `gorm:"column:import" json:"import" form:"import"`
|
|
395
|
+ Sortno int64 `gorm:"column:sortno" json:"sortno" form:"sortno"`
|
|
396
|
+}
|
|
397
|
+
|
|
398
|
+func (SgjUserOrg) TableName() string {
|
|
399
|
+ return "sgj_user_org"
|
|
400
|
+}
|