|
@@ -198,28 +198,28 @@ func (TempHdOtherMachine) TableName() string {
|
198
|
198
|
|
199
|
199
|
type TempHdPatient struct {
|
200
|
200
|
ID int64 `gorm:"column:id" json:"id"`
|
201
|
|
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
|
202
|
|
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
|
203
|
|
- CardNo string `gorm:"column:card_no" json:"card_no"`
|
204
|
|
- CardType string `gorm:"column:card_type" json:"card_type"`
|
205
|
|
- IdNo string `gorm:"column:id_no" json:"id_no"`
|
206
|
|
- IdType string `gorm:"column:id_type" json:"id_type"`
|
207
|
|
- PatientName string `gorm:"column:patient_name" json:"patient_name"`
|
208
|
|
- Gender string `gorm:"column:gender" json:"gender"`
|
209
|
|
- BornDate time.Time `gorm:"column:born_date" json:"born_date"`
|
210
|
|
- DiagnosisSummary string `gorm:"column:diagnosis_summary" json:"diagnosis_summary"`
|
211
|
|
- IsCrf string `gorm:"column:is_crf" json:"is_crf"`
|
212
|
|
- AllergyHistory string `gorm:"column:allergy_history" json:"allergy_history"`
|
213
|
|
- PayMethod string `gorm:"column:pay_method" json:"pay_method"`
|
214
|
|
- DialysisStartTime time.Time `gorm:"column:dialysis_start_time" json:"dialysis_start_time"`
|
215
|
|
- LocalStartTime time.Time `gorm:"column:local_start_time" json:"local_start_time"`
|
216
|
|
- Xgbz string `gorm:"column:xgbz" json:"xgbz"`
|
217
|
|
- CreatedTime time.Time `gorm:"column:created_time" json:"created_time"`
|
218
|
|
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time"`
|
219
|
|
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
|
220
|
|
- Mj string `gorm:"column:mj" json:"mj"`
|
221
|
|
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
|
222
|
|
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
|
|
201
|
+ HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
|
|
202
|
+ PatientNk string `gorm:"column:PATIENT_NK" json:"PATIENT_NK"`
|
|
203
|
+ CardNo string `gorm:"column:CARD_NO" json:"CARD_NO"`
|
|
204
|
+ CardType string `gorm:"column:CARD_TYPE" json:"CARD_TYPE"`
|
|
205
|
+ IdNo string `gorm:"column:ID_NO" json:"ID_NO"`
|
|
206
|
+ IdType string `gorm:"column:ID_TYPE" json:"ID_TYPE"`
|
|
207
|
+ PatientName string `gorm:"column:PATIENT_NAME" json:"PATIENT_NAME"`
|
|
208
|
+ Gender string `gorm:"column:GENDER" json:"GENDER"`
|
|
209
|
+ BornDate time.Time `gorm:"column:BORN_DATE" json:"BORN_DATE"`
|
|
210
|
+ DiagnosisSummary string `gorm:"column:DIAGNOSIS_SUMMARY" json:"DIAGNOSIS_SUMMARY"`
|
|
211
|
+ IsCrf string `gorm:"column:IS_CRF" json:"IS_CRF"`
|
|
212
|
+ AllergyHistory string `gorm:"column:ALLERGY_HISTORY" json:"ALLERGY_HISTORY"`
|
|
213
|
+ PayMethod string `gorm:"column:PAY_METHOD" json:"PAY_METHOD"`
|
|
214
|
+ DialysisStartTime time.Time `gorm:"column:DIALYSIS_START_TIME" json:"DIALYSIS_START_TIME"`
|
|
215
|
+ LocalStartTime time.Time `gorm:"column:LOCAL_START_TIME" json:"LOCAL_START_TIME"`
|
|
216
|
+ Xgbz string `gorm:"column:XGBZ" json:"XGBZ"`
|
|
217
|
+ CreatedTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
|
|
218
|
+ UpdateTime time.Time `gorm:"column:UPDATE_TIME" json:"UPDATE_TIME"`
|
|
219
|
+ Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
|
|
220
|
+ Mj string `gorm:"column:MJ" json:"MJ"`
|
|
221
|
+ Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
|
|
222
|
+ Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
|
223
|
223
|
}
|
224
|
224
|
|
225
|
225
|
func (TempHdPatient) TableName() string {
|
|
@@ -228,19 +228,19 @@ func (TempHdPatient) TableName() string {
|
228
|
228
|
|
229
|
229
|
type TempHdPatientOut struct {
|
230
|
230
|
ID int64 `gorm:"column:id" json:"id"`
|
231
|
|
- Sn string `gorm:"column:sn" json:"sn"`
|
232
|
|
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
|
233
|
|
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
|
234
|
|
- SequelaeDate time.Time `gorm:"column:sequelae_date" json:"sequelae_date"`
|
235
|
|
- SequelaeType string `gorm:"column:sequelae_type" json:"sequelae_type"`
|
236
|
|
- SequelaeSubType string `gorm:"column:sequelae_sub_type" json:"sequelae_sub_type"`
|
237
|
|
- ExtReason string `gorm:"column:ext_reason" json:"ext_reason"`
|
238
|
|
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
|
239
|
|
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
|
240
|
|
- Mj string `gorm:"column:mj" json:"mj"`
|
241
|
|
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
|
242
|
|
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
|
243
|
|
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
|
|
231
|
+ Sn string `gorm:"column:SN" json:"SN"`
|
|
232
|
+ HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
|
|
233
|
+ PatientNk string `gorm:"column:PATIENT_NK" json:"PATIENT_NK"`
|
|
234
|
+ SequelaeDate time.Time `gorm:"column:SEQUELAE_DATE" json:"SEQUELAE_DATE"`
|
|
235
|
+ SequelaeType string `gorm:"column:SEQUELAE_TYPE" json:"SEQUELAE_TYPE"`
|
|
236
|
+ SequelaeSubType string `gorm:"column:SEQUELAE_SUB_TYPE" json:"SEQUELAE_SUB_TYPE"`
|
|
237
|
+ ExtReason string `gorm:"column:EXT_REASON" json:"EXT_REASON"`
|
|
238
|
+ CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
|
|
239
|
+ Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
|
|
240
|
+ Mj string `gorm:"column:MJ" json:"MJ"`
|
|
241
|
+ Xgbz int64 `gorm:"column:XGBZ" json:"XGBZ"`
|
|
242
|
+ Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
|
|
243
|
+ Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
|
244
|
244
|
}
|
245
|
245
|
|
246
|
246
|
func (TempHdPatientOut) TableName() string {
|
|
@@ -249,36 +249,36 @@ func (TempHdPatientOut) TableName() string {
|
249
|
249
|
|
250
|
250
|
type TempHdPs struct {
|
251
|
251
|
ID int64 `gorm:"column:id" json:"id"`
|
252
|
|
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
|
253
|
|
- PrescribeId string `gorm:"column:prescribe_id" json:"prescribe_id"`
|
254
|
|
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
|
255
|
|
- MedicalId string `gorm:"column:medical_id" json:"medical_id"`
|
256
|
|
- DrId string `gorm:"column:dr_id" json:"dr_id"`
|
257
|
|
- DialysisFrequency int64 `gorm:"column:dialysis_frequency" json:"dialysis_frequency"`
|
258
|
|
- FrequencyUnit int64 `gorm:"column:frequency_unit" json:"frequency_unit"`
|
259
|
|
- DialysisDuration float64 `gorm:"column:dialysis_duration" json:"dialysis_duration"`
|
260
|
|
- Hdf string `gorm:"column:hdf" json:"hdf"`
|
261
|
|
- HdfFrequencyUnit int64 `gorm:"column:hdf_frequency_unit" json:"hdf_frequency_unit"`
|
262
|
|
- HdfFrequency int64 `gorm:"column:hdf_frequency" json:"hdf_frequency"`
|
263
|
|
- HdfDuration float64 `gorm:"column:hdf_duration" json:"hdf_duration"`
|
264
|
|
- Hp string `gorm:"column:hp" json:"hp"`
|
265
|
|
- HpFrequency int64 `gorm:"column:hp_frequency" json:"hp_frequency"`
|
266
|
|
- HpFrequencyUnit int64 `gorm:"column:hp_frequency_unit" json:"hp_frequency_unit"`
|
267
|
|
- HpDuration float64 `gorm:"column:hp_duration" json:"hp_duration"`
|
268
|
|
- K float64 `gorm:"column:k" json:"k"`
|
269
|
|
- Ca float64 `gorm:"column:ca" json:"ca"`
|
270
|
|
- Na float64 `gorm:"column:na" json:"na"`
|
271
|
|
- Glucose string `gorm:"column:glucose" json:"glucose"`
|
272
|
|
- FluxLevel string `gorm:"column:flux_level" json:"flux_level"`
|
273
|
|
- FluxValue string `gorm:"column:flux_value" json:"flux_value"`
|
274
|
|
- UseType string `gorm:"column:use_type" json:"use_type"`
|
275
|
|
- PrescribeTime time.Time `gorm:"column:prescribe_time" json:"prescribe_time"`
|
276
|
|
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
|
277
|
|
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
|
278
|
|
- Mj string `gorm:"column:mj" json:"mj"`
|
279
|
|
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
|
280
|
|
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
|
281
|
|
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
|
|
252
|
+ HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
|
|
253
|
+ PrescribeId string `gorm:"column:PRESCRIBE_ID" json:"PRESCRIBE_ID"`
|
|
254
|
+ PatientNk string `gorm:"column:PATIENT_NK" json:"PATIENT_NK"`
|
|
255
|
+ MedicalId string `gorm:"column:MEDICAL_ID" json:"MEDICAL_ID"`
|
|
256
|
+ DrId string `gorm:"column:DR_ID" json:"DR_ID"`
|
|
257
|
+ DialysisFrequency int64 `gorm:"column:DIALYSIS_FREQUENCY" json:"DIALYSIS_FREQUENCY"`
|
|
258
|
+ FrequencyUnit int64 `gorm:"column:FREQUENCY_UNIT" json:"FREQUENCY_UNIT"`
|
|
259
|
+ DialysisDuration float64 `gorm:"column:DIALYSIS_DURATION" json:"DIALYSIS_DURATION"`
|
|
260
|
+ Hdf string `gorm:"column:HDF" json:"HDF"`
|
|
261
|
+ HdfFrequencyUnit int64 `gorm:"column:HDF_FREQUENCY_UNIT" json:"HDF_FREQUENCY_UNIT"`
|
|
262
|
+ HdfFrequency int64 `gorm:"column:HDF_FREQUENCY" json:"HDF_FREQUENCY"`
|
|
263
|
+ HdfDuration float64 `gorm:"column:HDF_DURATION" json:"HDF_DURATION"`
|
|
264
|
+ Hp string `gorm:"column:HP" json:"HP"`
|
|
265
|
+ HpFrequency int64 `gorm:"column:HP_FREQUENCY" json:"HP_FREQUENCY"`
|
|
266
|
+ HpFrequencyUnit int64 `gorm:"column:HP_FREQUENCY_UNIT" json:"HP_FREQUENCY_UNIT"`
|
|
267
|
+ HpDuration float64 `gorm:"column:HP_DURATION" json:"HP_DURATION"`
|
|
268
|
+ K float64 `gorm:"column:K" json:"K"`
|
|
269
|
+ Ca float64 `gorm:"column:CA" json:"CA"`
|
|
270
|
+ Na float64 `gorm:"column:NA" json:"NA"`
|
|
271
|
+ Glucose string `gorm:"column:GLUCOSE" json:"GLUCOSE"`
|
|
272
|
+ FluxLevel string `gorm:"column:FLUX_LEVEL" json:"FLUX_LEVEL"`
|
|
273
|
+ FluxValue string `gorm:"column:FLUX_VALUE" json:"FLUX_VALUE"`
|
|
274
|
+ UseType string `gorm:"column:USE_TYPE" json:"USE_TYPE"`
|
|
275
|
+ PrescribeTime time.Time `gorm:"column:PRESCRIBE_TIME" json:"PRESCRIBE_TIME"`
|
|
276
|
+ CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
|
|
277
|
+ Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
|
|
278
|
+ Mj string `gorm:"column:MJ" json:"MJ"`
|
|
279
|
+ Xgbz int64 `gorm:"column:XGBZ" json:"XGBZ"`
|
|
280
|
+ Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
|
|
281
|
+ Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
|
282
|
282
|
}
|
283
|
283
|
|
284
|
284
|
func (TempHdPs) TableName() string {
|
|
@@ -287,17 +287,17 @@ func (TempHdPs) TableName() string {
|
287
|
287
|
|
288
|
288
|
type TempHdPsMedicine struct {
|
289
|
289
|
ID int64 `gorm:"column:id" json:"id"`
|
290
|
|
- Sn string `gorm:"column:sn" json:"sn"`
|
291
|
|
- PrescribeId string `gorm:"column:prescribe_id" json:"prescribe_id"`
|
292
|
|
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
|
293
|
|
- MedicineTypeId string `gorm:"column:medicine_type_id" json:"medicine_type_id"`
|
294
|
|
- MedicineId string `gorm:"column:medicine_id" json:"medicine_id"`
|
295
|
|
- CreatedTime time.Time `gorm:"column:created_time" json:"created_time"`
|
296
|
|
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
|
297
|
|
- Mj string `gorm:"column:mj" json:"mj"`
|
298
|
|
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
|
299
|
|
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
|
300
|
|
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
|
|
290
|
+ Sn string `gorm:"column:SN" json:"SN"`
|
|
291
|
+ PrescribeId string `gorm:"column:PRESCRIBE_ID" json:"PRESCRIBE_ID"`
|
|
292
|
+ HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
|
|
293
|
+ MedicineTypeId string `gorm:"column:MEDICINE_TYPE_ID" json:"MEDICINE_TYPE_ID"`
|
|
294
|
+ MedicineId string `gorm:"column:MEDICINE_ID" json:"MEDICINE_ID"`
|
|
295
|
+ CreatedTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
|
|
296
|
+ Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
|
|
297
|
+ Mj string `gorm:"column:MJ" json:"MJ"`
|
|
298
|
+ Xgbz int64 `gorm:"column:XGBZ" json:"XGBZ"`
|
|
299
|
+ Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
|
|
300
|
+ Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
|
301
|
301
|
}
|
302
|
302
|
|
303
|
303
|
func (TempHdPsMedicine) TableName() string {
|
|
@@ -396,7 +396,7 @@ type DataUploadConfig struct {
|
396
|
396
|
ModifyTime int64 `gorm:"column:modify_time" json:"modify_time"`
|
397
|
397
|
TimeQuantum int64 `gorm:"column:time_quantum" json:"time_quantum"`
|
398
|
398
|
DepartmentName string `gorm:"column:department_name" json:"department_name"`
|
399
|
|
- HospitalId int64 `gorm:"column:hospital_id" json:"hospital_id"`
|
|
399
|
+ HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
|
400
|
400
|
InstType int64 `gorm:"column:inst_type" json:"inst_type"`
|
401
|
401
|
DbHost string `gorm:"column:db_host" json:"db_host"`
|
402
|
402
|
DbPort string `gorm:"column:db_port" json:"db_port"`
|
|
@@ -411,19 +411,19 @@ func (DataUploadConfig) TableName() string {
|
411
|
411
|
|
412
|
412
|
type TempHdShift struct {
|
413
|
413
|
ID int64 `gorm:"column:id" json:"id"`
|
414
|
|
- PsId string `gorm:"column:ps_id" json:"ps_id"`
|
415
|
|
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
|
416
|
|
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
|
417
|
|
- ScheduleDate time.Time `gorm:"column:schedule_date" json:"schedule_date"`
|
418
|
|
- ShiftType string `gorm:"column:shift_type" json:"shift_type"`
|
419
|
|
- SickbedNo string `gorm:"column:sickbed_no" json:"sickbed_no"`
|
420
|
|
- ScheduleStatus string `gorm:"column:schedule_status" json:"schedule_status"`
|
421
|
|
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
|
422
|
|
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
|
423
|
|
- Mj string `gorm:"column:mj" json:"mj"`
|
424
|
|
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
|
425
|
|
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
|
426
|
|
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
|
|
414
|
+ PsId string `gorm:"column:PS_ID" json:"PS_ID"`
|
|
415
|
+ HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
|
|
416
|
+ PatientNk string `gorm:"column:PATIENT_NK" json:"PATIENT_NK"`
|
|
417
|
+ ScheduleDate time.Time `gorm:"column:SCHEDULE_DATE" json:"SCHEDULE_DATE"`
|
|
418
|
+ ShiftType string `gorm:"column:SHIFT_TYPE" json:"SHIFT_TYPE"`
|
|
419
|
+ SickbedNo string `gorm:"column:SICKBED_NO" json:"SICKBED_NO"`
|
|
420
|
+ ScheduleStatus string `gorm:"column:SCHEDULE_STATUS" json:"SCHEDULE_STATUS"`
|
|
421
|
+ CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
|
|
422
|
+ Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
|
|
423
|
+ Mj string `gorm:"column:MJ" json:"MJ"`
|
|
424
|
+ Xgbz int64 `gorm:"column:XGBZ" json:"XGBZ"`
|
|
425
|
+ Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
|
|
426
|
+ Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
|
427
|
427
|
}
|
428
|
428
|
|
429
|
429
|
func (TempHdShift) TableName() string {
|
|
@@ -432,21 +432,21 @@ func (TempHdShift) TableName() string {
|
432
|
432
|
|
433
|
433
|
type TempHdDoctorsAdvice struct {
|
434
|
434
|
ID int64 `gorm:"column:id" json:"id"`
|
435
|
|
- MedicalOrDerId string `gorm:"column:medical_or_der_id" json:"medical_or_der_id"`
|
436
|
|
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
|
437
|
|
- DialysisId string `gorm:"column:dialysis_id" json:"dialysis_id"`
|
438
|
|
- OrderType string `gorm:"column:order_type" json:"order_type"`
|
439
|
|
- RrtType string `gorm:"column:rrt_type" json:"rrt_type"`
|
440
|
|
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
|
441
|
|
- DialysisDuration int64 `gorm:"column:dialysis_duration" json:"dialysis_duration"`
|
442
|
|
- BloodVol int64 `gorm:"column:blood_vol" json:"blood_vol"`
|
443
|
|
- DryWeigh float64 `gorm:"column:dry_weigh" json:"dry_weigh"`
|
444
|
|
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
|
445
|
|
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
|
446
|
|
- Mj string `gorm:"column:mj" json:"mj"`
|
447
|
|
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
|
448
|
|
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
|
449
|
|
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
|
|
435
|
+ MedicalOrDerId string `gorm:"column:MEDICAL_ORDER_ID" json:"MEDICAL_ORDER_ID"`
|
|
436
|
+ HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
|
|
437
|
+ DialysisId string `gorm:"column:DIALYSIS_ID" json:"DIALYSIS_ID"`
|
|
438
|
+ OrderType string `gorm:"column:ORDER_TYPE" json:"ORDER_TYPE"`
|
|
439
|
+ RrtType string `gorm:"column:RRT_TYPE" json:"RRT_TYPE"`
|
|
440
|
+ PatientNk string `gorm:"column:PATIENT_NK" json:"PATIENT_NK"`
|
|
441
|
+ DialysisDuration int64 `gorm:"column:DIALYSIS_DURATION" json:"DIALYSIS_DURATION"`
|
|
442
|
+ BloodVol int64 `gorm:"column:BLOOD_VOL" json:"BLOOD_VOL"`
|
|
443
|
+ DryWeigh float64 `gorm:"column:DRY_WEIGHT" json:"DRY_WEIGHT"`
|
|
444
|
+ CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
|
|
445
|
+ Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
|
|
446
|
+ Mj string `gorm:"column:MJ" json:"MJ"`
|
|
447
|
+ Xgbz int64 `gorm:"column:XGBZ" json:"XGBZ"`
|
|
448
|
+ Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
|
|
449
|
+ Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
|
450
|
450
|
}
|
451
|
451
|
|
452
|
452
|
func (TempHdDoctorsAdvice) TableName() string {
|
|
@@ -455,40 +455,40 @@ func (TempHdDoctorsAdvice) TableName() string {
|
455
|
455
|
|
456
|
456
|
type TempHdDialysis struct {
|
457
|
457
|
ID int64 `gorm:"column:id" json:"id"`
|
458
|
|
- DialysisId string `gorm:"column:dialysis_id" json:"dialysis_id"`
|
459
|
|
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
|
460
|
|
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
|
461
|
|
- PsId string `gorm:"column:ps_id" json:"ps_id"`
|
462
|
|
- DialysisDate time.Time `gorm:"column:dialysis_date" json:"dialysis_date"`
|
463
|
|
- SickbedNo string `gorm:"column:sickbed_no" json:"sickbed_no"`
|
464
|
|
- DivisionId string `gorm:"column:division_id" json:"division_id"`
|
465
|
|
- EquipmentId string `gorm:"column:equipment_id" json:"equipment_id"`
|
466
|
|
- MixDalysis string `gorm:"column:mix_dalysis" json:"mix_dalysis"`
|
467
|
|
- ActualufMl int64 `gorm:"column:actualuf_ml" json:"actualuf_ml"`
|
468
|
|
- Ufv int64 `gorm:"column:ufv" json:"ufv"`
|
469
|
|
- TotalReplace int64 `gorm:"column:total_replace" json:"total_replace"`
|
470
|
|
- TotalTreatDuration int64 `gorm:"column:total_treat_duration" json:"total_treat_duration"`
|
471
|
|
- IsHospitalozation string `gorm:"column:is_hospitalozation" json:"is_hospitalozation"`
|
472
|
|
- IsEmergency string `gorm:"column:is_emergency" json:"is_emergency"`
|
473
|
|
- EmergencyReason string `gorm:"column:emergency_reason" json:"emergency_reason"`
|
474
|
|
- IsPerioperativePeriod string `gorm:"column:is_perioperative_period" json:"is_perioperative_period"`
|
475
|
|
- BeforeSbp int64 `gorm:"column:before_sbp" json:"before_sbp"`
|
476
|
|
- BeforeDbp int64 `gorm:"column:before_dbp" json:"before_dbp"`
|
477
|
|
- AfterSbp int64 `gorm:"column:after_sbp" json:"after_sbp"`
|
478
|
|
- AfterDbp int64 `gorm:"column:after_dbp" json:"after_dbp"`
|
479
|
|
- BeforeWeight float64 `gorm:"column:before_weight" json:"before_weight"`
|
480
|
|
- AfterWeight float64 `gorm:"column:after_weight" json:"after_weight"`
|
481
|
|
- AccessId string `gorm:"column:access_id" json:"access_id"`
|
482
|
|
- DialyzerId string `gorm:"column:dialyzer_id" json:"dialyzer_id"`
|
483
|
|
- Ktv float64 `gorm:"column:ktv" json:"ktv"`
|
484
|
|
- StartTime time.Time `gorm:"column:start_time" json:"start_time"`
|
485
|
|
- EndTime time.Time `gorm:"column:end_time" json:"end_time"`
|
486
|
|
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
|
487
|
|
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
|
488
|
|
- Mj string `gorm:"column:mj" json:"mj"`
|
489
|
|
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
|
490
|
|
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
|
491
|
|
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
|
|
458
|
+ DialysisId string `gorm:"column:DIALYSIS_ID" json:"DIALYSIS_ID"`
|
|
459
|
+ HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
|
|
460
|
+ PatientNk string `gorm:"column:PATIENT_NK" json:"PATIENT_NK"`
|
|
461
|
+ PsId string `gorm:"column:PS_ID" json:"PS_ID"`
|
|
462
|
+ DialysisDate time.Time `gorm:"column:DIALYSIS_DATE" json:"DIALYSIS_DATE"`
|
|
463
|
+ SickbedNo string `gorm:"column:SICKBED_NO" json:"SICKBED_NO"`
|
|
464
|
+ DivisionId string `gorm:"column:DIVISION_ID" json:"DIVISION_ID"`
|
|
465
|
+ EquipmentId string `gorm:"column:EQUIPMENT_ID" json:"EQUIPMENT_ID"`
|
|
466
|
+ MixDalysis string `gorm:"column:MIX_DIALYSIS" json:"MIX_DIALYSIS"`
|
|
467
|
+ ActualufMl int64 `gorm:"column:ACTUALUF_ML" json:"ACTUALUF_ML"`
|
|
468
|
+ Ufv int64 `gorm:"column:UFV" json:"UFV"`
|
|
469
|
+ TotalReplace int64 `gorm:"column:TOTAL_REPLACE" json:"TOTAL_REPLACE"`
|
|
470
|
+ TotalTreatDuration int64 `gorm:"column:TOTAL_TREAT_DURATION" json:"TOTAL_TREAT_DURATION"`
|
|
471
|
+ IsHospitalozation string `gorm:"column:IS_HOSPITALIZATION" json:"IS_HOSPITALIZATION"`
|
|
472
|
+ IsEmergency string `gorm:"column:IS_EMERGENCY" json:"IS_EMERGENCY"`
|
|
473
|
+ EmergencyReason string `gorm:"column:EMERGENCY_REASON" json:"EMERGENCY_REASON"`
|
|
474
|
+ IsPerioperativePeriod string `gorm:"column:IS_PERIOPERATIVE_PERIOD" json:"IS_PERIOPERATIVE_PERIOD"`
|
|
475
|
+ BeforeSbp int64 `gorm:"column:BEFORE_SBP" json:"BEFORE_SBP"`
|
|
476
|
+ BeforeDbp int64 `gorm:"column:BEFORE_DBP" json:"BEFORE_DBP"`
|
|
477
|
+ AfterSbp int64 `gorm:"column:AFTER_SBP" json:"AFTER_SBP"`
|
|
478
|
+ AfterDbp int64 `gorm:"column:AFTER_DBP" json:"AFTER_DBP"`
|
|
479
|
+ BeforeWeight float64 `gorm:"column:BEFORE_WEIGHT" json:"BEFORE_WEIGHT"`
|
|
480
|
+ AfterWeight float64 `gorm:"column:AFTER_WEIGHT" json:"AFTER_WEIGHT"`
|
|
481
|
+ AccessId string `gorm:"column:ACCESS_ID" json:"ACCESS_ID"`
|
|
482
|
+ DialyzerId string `gorm:"column:DIALYZER_ID" json:"DIALYZER_ID"`
|
|
483
|
+ Ktv float64 `gorm:"column:KTV" json:"KTV"`
|
|
484
|
+ StartTime time.Time `gorm:"column:START_TIME" json:"START_TIME"`
|
|
485
|
+ EndTime time.Time `gorm:"column:END_TIME" json:"END_TIME"`
|
|
486
|
+ CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
|
|
487
|
+ Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
|
|
488
|
+ Mj string `gorm:"column:MJ" json:"MJ"`
|
|
489
|
+ Xgbz int64 `gorm:"column:XGBZ" json:"XGBZ"`
|
|
490
|
+ Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
|
|
491
|
+ Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
|
492
|
492
|
}
|
493
|
493
|
|
494
|
494
|
func (TempHdDialysis) TableName() string {
|
|
@@ -497,32 +497,32 @@ func (TempHdDialysis) TableName() string {
|
497
|
497
|
|
498
|
498
|
type TempHdMiddle struct {
|
499
|
499
|
ID int64 `gorm:"column:id" json:"id"`
|
500
|
|
- Sn string `gorm:"column:sn" json:"sn"`
|
501
|
|
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
|
502
|
|
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
|
503
|
|
- DialysisId string `gorm:"column:dialysis_id" json:"dialysis_id"`
|
504
|
|
- MonitorTime time.Time `gorm:"column:monitor_time" json:"monitor_time"`
|
505
|
|
- Sbp int64 `gorm:"column:sbp" json:"sbp"`
|
506
|
|
- Dbp int64 `gorm:"column:dbp" json:"dbp"`
|
507
|
|
- P int64 `gorm:"column:p" json:"p"`
|
508
|
|
- Ns int64 `gorm:"column:ns" json:"ns"`
|
509
|
|
- Qb int64 `gorm:"column:qb" json:"qb"`
|
510
|
|
- Ap int64 `gorm:"column:ap" json:"ap"`
|
511
|
|
- Vp int64 `gorm:"column:vp" json:"vp"`
|
512
|
|
- Tmp int64 `gorm:"column:tmp" json:"tmp"`
|
513
|
|
- Ufr int64 `gorm:"column:ufr" json:"ufr"`
|
514
|
|
- Ufv int64 `gorm:"column:ufv" json:"ufv"`
|
515
|
|
- OnLine int64 `gorm:"column:on_line" json:"on_line"`
|
516
|
|
- Spo2 float64 `gorm:"column:spo2" json:"spo2"`
|
517
|
|
- R int64 `gorm:"column:r" json:"r"`
|
518
|
|
- OtherSituation string `gorm:"column:other_situation" json:"other_situation"`
|
519
|
|
- Nurse string `gorm:"column:nurse" json:"nurse"`
|
520
|
|
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
|
521
|
|
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
|
522
|
|
- Mj string `gorm:"column:mj" json:"mj"`
|
523
|
|
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
|
524
|
|
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
|
525
|
|
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
|
|
500
|
+ Sn string `gorm:"column:SN" json:"SN"`
|
|
501
|
+ HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
|
|
502
|
+ PatientNk string `gorm:"column:PATIENT_NK" json:"PATIENT_NK"`
|
|
503
|
+ DialysisId string `gorm:"column:DIALYSIS_ID" json:"DIALYSIS_ID"`
|
|
504
|
+ MonitorTime time.Time `gorm:"column:MONITOR_TIME" json:"MONITOR_TIME"`
|
|
505
|
+ Sbp int64 `gorm:"column:SBP" json:"SBP"`
|
|
506
|
+ Dbp int64 `gorm:"column:DBP" json:"DBP"`
|
|
507
|
+ P int64 `gorm:"column:P" json:"P"`
|
|
508
|
+ Ns int64 `gorm:"column:NS" json:"NS"`
|
|
509
|
+ Qb int64 `gorm:"column:QB" json:"QB"`
|
|
510
|
+ Ap int64 `gorm:"column:AP" json:"AP"`
|
|
511
|
+ Vp int64 `gorm:"column:VP" json:"VP"`
|
|
512
|
+ Tmp int64 `gorm:"column:TMP" json:"TMP"`
|
|
513
|
+ Ufr int64 `gorm:"column:UFR" json:"UFR"`
|
|
514
|
+ Ufv int64 `gorm:"column:UFV" json:"UFV"`
|
|
515
|
+ OnLine int64 `gorm:"column:ON_LINE" json:"ON_LINE"`
|
|
516
|
+ Spo2 float64 `gorm:"column:SPO2" json:"SPO2"`
|
|
517
|
+ R int64 `gorm:"column:R" json:"R"`
|
|
518
|
+ OtherSituation string `gorm:"column:OTHER_SITUATION" json:"OTHER_SITUATION"`
|
|
519
|
+ Nurse string `gorm:"column:NURSE" json:"NURSE"`
|
|
520
|
+ CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
|
|
521
|
+ Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
|
|
522
|
+ Mj string `gorm:"column:MJ" json:"MJ"`
|
|
523
|
+ Xgbz int64 `gorm:"column:XGBZ" json:"XGBZ"`
|
|
524
|
+ Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
|
|
525
|
+ Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
|
526
|
526
|
}
|
527
|
527
|
|
528
|
528
|
func (TempHdMiddle) TableName() string {
|