123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550 |
- package sz
-
- import "time"
-
- type TempHdHospital struct {
- ID int64 `gorm:"column:id" json:"id"`
- HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
- InstType string `gorm:"column:INST_TYPE" json:"INST_TYPE"`
- DepartMentName string `gorm:"column:DEPARTMENT_NAME" json:"DEPARTMENT_NAME"`
- AuthorizedBeds int64 `gorm:"column:AUTHORIZED_BEDS" json:"AUTHORIZED_BEDS"`
- CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
- UpdateTime time.Time `gorm:"column:UPDATE_TIME" json:"UPDATE_TIME"`
- Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
- Mj string `gorm:"column:MJ" json:"MJ"`
- Xgbz int64 `gorm:"column:XGBZ" json:"XGBZ"`
- Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
- Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
- }
-
- func (TempHdHospital) TableName() string {
- return "t_hd_hospital"
- }
-
- type TempHdStaff struct {
- ID int64 `gorm:"column:id" json:"id"`
- HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
- StaffId string `gorm:"column:STAFF_ID" json:"STAFF_ID"`
- IdType string `gorm:"column:ID_TYPE" json:"ID_TYPE"`
- IdNo string `gorm:"column:ID_NO" json:"ID_NO"`
- StaffName string `gorm:"column:STAFF_NAME" json:"STAFF_NAME"`
- Position string `gorm:"column:POSITION" json:"POSITION"`
- TrainingName string `gorm:"column:TRAINING_NAME" json:"TRAINING_NAME"`
- PracticeCertificate string `gorm:"column:PRACTICE_CERTIFICATE" json:"PRACTICE_CERTIFICATE"`
- PracticeCertificateNo string `gorm:"column:PRACTICE_CERTIFICATE_NO" json:"PRACTICE_CERTIFICATE_NO"`
- QualificationCertificate string `gorm:"column:QUALIFICATION_CERTIFICATE" json:"QUALIFICATION_CERTIFICATE"`
- QualificationType string `gorm:"column:QUALIFICATION_TYPE" json:"QUALIFICATION_TYPE"`
- PermanentType string `gorm:"column:PERMANENT_TYPE" json:"PERMANENT_TYPE"`
- DiplomaFile string `gorm:"column:DIPLOMA_FILE" json:"DIPLOMA_FILE"`
- DegreeCertificateFile string `gorm:"column:DEGREE_CERTIFICATE_FILE" json:"DEGREE_CERTIFICATE_FILE"`
- TrainingCertificateFile string `gorm:"column:TRAINING_CERTIFICATE_FILE" json:"TRAINING_CERTIFICATE_FILE"`
- PracticeCertificateFile string `gorm:"column:PRACTICE_CERTIFICATE_FILE" json:"PRACTICE_CERTIFICATE_FILE"`
- QualificationCertificateFile string `gorm:"column:QUALIFICATION_CERTIFICATE_FILE" json:"QUALIFICATION_CERTIFICATE_FILE"`
- Xgbz string `gorm:"column:XGBZ" json:"XGBZ"`
- TrainingDate time.Time `gorm:"column:TRAINING_DATE" json:"TRAINING_DATE"`
- InDate time.Time `gorm:"column:IN_DATE" json:"IN_DATE"`
- OutDate time.Time `gorm:"column:OUT_DATE" json:"OUT_DATE"`
- CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
- UpdateTime time.Time `gorm:"column:UPDATE_TIME" json:"UPDATE_TIME"`
- Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
- Mj string `gorm:"column:MJ" json:"MJ"`
- Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
- Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
- }
-
- func (TempHdStaff) TableName() string {
- return "t_hd_staff"
- }
-
- type TempHdLayout struct {
- ID int64 `gorm:"column:id" json:"id"`
- HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
- PartitionName string `gorm:"column:PARTITION_NAME" json:"PARTITION_NAME"`
- PartitionImg string `gorm:"column:PARTITION_IMG" json:"PARTITION_IMG"`
- FunctionArea string `gorm:"column:FUNCTION_AREA" json:"FUNCTION_AREA"`
- Xgbz int64 `gorm:"column:XGBZ" json:"XGBZ"`
- CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
- Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
- Mj string `gorm:"column:MJ" json:"MJ"`
- Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
- Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
- }
-
- func (TempHdLayout) TableName() string {
- return "t_hd_layout"
- }
-
- type TempHdDm struct {
- ID int64 `gorm:"column:id" json:"id"`
- HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
- EquipmentId string `gorm:"column:EQUIPMENT_ID" json:"EQUIPMENT_ID"`
- SickbedNo string `gorm:"column:SICKBED_NO" json:"SICKBED_NO"`
- EquipmentBrand string `gorm:"column:EQUIPMENT_BRAND" json:"EQUIPMENT_BRAND"`
- EquipmentModel string `gorm:"column:EQUIPMENT_MODEL" json:"EQUIPMENT_MODEL"`
- EnableTime time.Time `gorm:"column:ENABLE_TIME" json:"ENABLE_TIME"`
- DiscardedTime time.Time `gorm:"column:DISCARDED_TIME" json:"DISCARDED_TIME"`
- Status string `gorm:"column:STATUS" json:"STATUS"`
- EquipmentType string `gorm:"column:EQUIPMENT_TYPE" json:"EQUIPMENT_TYPE"`
- Temperature string `gorm:"column:TEMPERATURE" json:"TEMPERATURE"`
- Humidity string `gorm:"column:HUMIDITY" json:"HUMIDITY"`
- Pressure string `gorm:"column:PRESSURE" json:"PRESSURE"`
- PressureUnit string `gorm:"column:PRESSURE_UNIT" json:"PRESSURE_UNIT"`
- WorkingVoltage string `gorm:"column:WORKING_VOLTAGE" json:"WORKING_VOLTAGE"`
- Xgbz string `gorm:"column:XGBZ" json:"XGBZ"`
- Bbp string `gorm:"column:BBP" json:"BBP"`
- CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
- UpdateTime time.Time `gorm:"column:UPDATE_TIME" json:"UPDATE_TIME"`
- Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
- Mj string `gorm:"column:MJ" json:"MJ"`
- Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
- Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
- }
-
- func (TempHdDm) TableName() string {
- return "t_hd_dm"
- }
-
- type TempHdWm struct {
- ID int64 `gorm:"column:id" json:"id"`
- HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
- EquipmentId string `gorm:"column:EQUIPMENT_ID" json:"EQUIPMENT_ID"`
- EquipmentBrand string `gorm:"column:EQUIPMENT_BRAND" json:"EQUIPMENT_BRAND"`
- EquipmentModel string `gorm:"column:EQUIPMENT_MODEL" json:"EQUIPMENT_MODEL"`
- EnableTime time.Time `gorm:"column:ENABLE_TIME" json:"ENABLE_TIME"`
- DiscardedTime time.Time `gorm:"column:DISCARDED_TIME" json:"DISCARDED_TIME"`
- EquipmentType string `gorm:"column:EQUIPMENT_TYPE" json:"EQUIPMENT_TYPE"`
- Temperature string `gorm:"column:TEMPERATURE" json:"TEMPERATURE"`
- Humidity string `gorm:"column:HUMIDITY" json:"HUMIDITY"`
- Pressure string `gorm:"column:PRESSURE" json:"PRESSURE"`
- PressureUnit string `gorm:"column:PRESSURE_UNIT" json:"PRESSURE_UNIT"`
- QualityStandard string `gorm:"column:QUALITY_STANDARD" json:"QUALITY_STANDARD"`
- Xgbz string `gorm:"column:XGBZ" json:"XGBZ"`
- CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
- UpdateTime time.Time `gorm:"column:UPDATE_TIME" json:"UPDATE_TIME"`
- Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
- Mj string `gorm:"column:MJ" json:"MJ"`
- Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
- Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
- }
-
- func (TempHdWm) TableName() string {
- return "t_hd_wm"
- }
-
- type TempHdMaintain struct {
- ID int64 `gorm:"column:id" json:"id"`
- SN string `gorm:"column:SN" json:"SN"`
- HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
- EquipmentId string `gorm:"column:EQUIPMENT_ID" json:"EQUIPMENT_ID"`
- EquipmentType string `gorm:"column:EQUIPMENT_TYPE" json:"EQUIPMENT_TYPE"`
- RepairTime time.Time `gorm:"column:REPAIR_TIME" json:"REPAIR_TIME"`
- Xgbz string `gorm:"column:XGBZ" json:"XGBZ"`
- CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
- Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
- Mj string `gorm:"column:MJ" json:"MJ"`
- Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
- Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
- }
-
- func (TempHdMaintain) TableName() string {
- return "t_hd_maintain"
- }
-
- type TempHdDisinfectMethod struct {
- ID int64 `gorm:"column:id" json:"id"`
- SN string `gorm:"column:SN" json:"SN"`
- HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
- EquipmentId string `gorm:"column:EQUIPMENT_ID" json:"EQUIPMENT_ID"`
- EquipmentType string `gorm:"column:EQUIPMENT_TYPE" json:"EQUIPMENT_TYPE"`
- EquipmentModel string `gorm:"column:EQUIPMENT_MODEL" json:"EQUIPMENT_MODEL"`
- DisinfectMethod string `gorm:"column:DISINFECT_METHOD" json:"DISINFECT_METHOD"`
- Disinfector string `gorm:"column:DISINFECTOR" json:"DISINFECTOR"`
- Concentration string `gorm:"column:CONCENTRATION" json:"CONCENTRATION"`
- Frequency string `gorm:"column:FREQUENCY" json:"FREQUENCY"`
- Xgbz string `gorm:"column:XGBZ" json:"XGBZ"`
- CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
- UpdateTime time.Time `gorm:"column:UPDATE_TIME" json:"UPDATE_TIME"`
- Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
- Mj string `gorm:"column:MJ" json:"MJ"`
- Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
- Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
- }
-
- func (TempHdDisinfectMethod) TableName() string {
- return "t_hd_disinfect_method"
- }
-
- type TempHdOtherMachine struct {
- ID int64 `gorm:"column:id" json:"id"`
- HospitalId string `gorm:"column:HOSPITAL_ID" json:"HOSPITAL_ID"`
- EquipmentId string `gorm:"column:EQUIPMENT_ID" json:"EQUIPMENT_ID"`
- EquipmentBrand string `gorm:"column:EQUIPMENT_BRAND" json:"EQUIPMENT_BRAND"`
- EquipmentModel string `gorm:"column:EQUIPMENT_MODEL" json:"EQUIPMENT_MODEL"`
- EnableTime time.Time `gorm:"column:ENABLE_TIME" json:"ENABLE_TIME"`
- DiscardedTime time.Time `gorm:"column:DISCARDED_TIME" json:"DISCARDED_TIME"`
- Status string `gorm:"column:STATUS" json:"STATUS"`
- Xgbz string `gorm:"column:XGBZ" json:"XGBZ"`
- CreateTime time.Time `gorm:"column:CREATE_TIME" json:"CREATE_TIME"`
- UpdateTime time.Time `gorm:"column:UPDATE_TIME" json:"UPDATE_TIME"`
- Sjscsj time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ"`
- Mj string `gorm:"column:MJ" json:"MJ"`
- Ylyl1 string `gorm:"column:YLYL1" json:"YLYL1"`
- Ylyl2 string `gorm:"column:YLYL2" json:"YLYL2"`
- }
-
- func (TempHdOtherMachine) TableName() string {
- return "t_hd_other_machine"
- }
-
- type TempHdPatient struct {
- ID int64 `gorm:"column:id" json:"id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
- CardNo string `gorm:"column:card_no" json:"card_no"`
- CardType string `gorm:"column:card_type" json:"card_type"`
- IdNo string `gorm:"column:id_no" json:"id_no"`
- IdType string `gorm:"column:id_type" json:"id_type"`
- PatientName string `gorm:"column:patient_name" json:"patient_name"`
- Gender string `gorm:"column:gender" json:"gender"`
- BornDate time.Time `gorm:"column:born_date" json:"born_date"`
- DiagnosisSummary string `gorm:"column:diagnosis_summary" json:"diagnosis_summary"`
- IsCrf string `gorm:"column:is_crf" json:"is_crf"`
- AllergyHistory string `gorm:"column:allergy_history" json:"allergy_history"`
- PayMethod string `gorm:"column:pay_method" json:"pay_method"`
- DialysisStartTime time.Time `gorm:"column:dialysis_start_time" json:"dialysis_start_time"`
- LocalStartTime time.Time `gorm:"column:local_start_time" json:"local_start_time"`
- Xgbz string `gorm:"column:xgbz" json:"xgbz"`
- CreatedTime time.Time `gorm:"column:created_time" json:"created_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
- }
-
- func (TempHdPatient) TableName() string {
- return "t_hd_patient"
- }
-
- type TempHdPatientOut struct {
- ID int64 `gorm:"column:id" json:"id"`
- Sn string `gorm:"column:sn" json:"sn"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
- SequelaeDate time.Time `gorm:"column:sequelae_date" json:"sequelae_date"`
- SequelaeType string `gorm:"column:sequelae_type" json:"sequelae_type"`
- SequelaeSubType string `gorm:"column:sequelae_sub_type" json:"sequelae_sub_type"`
- ExtReason string `gorm:"column:ext_reason" json:"ext_reason"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
- }
-
- func (TempHdPatientOut) TableName() string {
- return "t_hd_patient_out"
- }
-
- type TempHdPs struct {
- ID int64 `gorm:"column:id" json:"id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
- PrescribeId string `gorm:"column:prescribe_id" json:"prescribe_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
- MedicalId string `gorm:"column:medical_id" json:"medical_id"`
- DrId string `gorm:"column:dr_id" json:"dr_id"`
- DialysisFrequency int64 `gorm:"column:dialysis_frequency" json:"dialysis_frequency"`
- FrequencyUnit int64 `gorm:"column:frequency_unit" json:"frequency_unit"`
- DialysisDuration float64 `gorm:"column:dialysis_duration" json:"dialysis_duration"`
- Hdf string `gorm:"column:hdf" json:"hdf"`
- HdfFrequencyUnit int64 `gorm:"column:hdf_frequency_unit" json:"hdf_frequency_unit"`
- HdfFrequency int64 `gorm:"column:hdf_frequency" json:"hdf_frequency"`
- HdfDuration float64 `gorm:"column:hdf_duration" json:"hdf_duration"`
- Hp string `gorm:"column:hp" json:"hp"`
- HpFrequency int64 `gorm:"column:hp_frequency" json:"hp_frequency"`
- HpFrequencyUnit int64 `gorm:"column:hp_frequency_unit" json:"hp_frequency_unit"`
- HpDuration float64 `gorm:"column:hp_duration" json:"hp_duration"`
- K float64 `gorm:"column:k" json:"k"`
- Ca float64 `gorm:"column:ca" json:"ca"`
- Na float64 `gorm:"column:na" json:"na"`
- Glucose string `gorm:"column:glucose" json:"glucose"`
- FluxLevel string `gorm:"column:flux_level" json:"flux_level"`
- FluxValue string `gorm:"column:flux_value" json:"flux_value"`
- UseType string `gorm:"column:use_type" json:"use_type"`
- PrescribeTime time.Time `gorm:"column:prescribe_time" json:"prescribe_time"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
- }
-
- func (TempHdPs) TableName() string {
- return "t_hd_ps"
- }
-
- type TempHdPsMedicine struct {
- ID int64 `gorm:"column:id" json:"id"`
- Sn string `gorm:"column:sn" json:"sn"`
- PrescribeId string `gorm:"column:prescribe_id" json:"prescribe_id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
- MedicineTypeId string `gorm:"column:medicine_type_id" json:"medicine_type_id"`
- MedicineId string `gorm:"column:medicine_id" json:"medicine_id"`
- CreatedTime time.Time `gorm:"column:created_time" json:"created_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
- }
-
- func (TempHdPsMedicine) TableName() string {
- return "t_hd_ps_medicine"
- }
-
- type TempHdInfection struct {
- ID int64 `gorm:"column:id" json:"id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
- Hbv string `gorm:"column:hbv" json:"hbv"`
- Hcv string `gorm:"column:hcv" json:"hcv"`
- Rpr string `gorm:"column:rpr" json:"rpr"`
- Hiv string `gorm:"column:hiv" json:"hiv"`
- Hbsag string `gorm:"column:hbsag" json:"hbsag"`
- Hbs string `gorm:"column:hbs" json:"hbs"`
- Hbeag string `gorm:"column:hbeag" json:"hbeag"`
- Hbe string `gorm:"column:hbe" json:"hbe"`
- Hbc string `gorm:"column:hbc" json:"hbc"`
- CheckDate time.Time `gorm:"column:check_date" json:"check_date"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
- }
-
- func (TempHdInfection) TableName() string {
- return "t_hd_infection"
- }
-
- type TempHdInhospital struct {
- ID int64 `gorm:"column:id" json:"id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
- MedicalNo string `gorm:"column:medical_no" json:"medical_no"`
- AdmissionTime time.Time `gorm:"column:admission_time" json:"admission_time"`
- AdmissionCause string `gorm:"column:admission_cause" json:"admission_cause"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
- }
-
- func (TempHdInhospital) TableName() string {
- return "t_hd_inhospital"
- }
-
- type TempHdOuthospital struct {
- ID int64 `gorm:"column:id" json:"id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
- MedicalNo string `gorm:"column:medical_no" json:"medical_no"`
- DischargeDate time.Time `gorm:"column:discharge_date" json:"discharge_date"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
- }
-
- func (TempHdOuthospital) TableName() string {
- return "t_hd_outhospital"
- }
-
- type DataUpload struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
- SyncType int64 `gorm:"column:sync_type" json:"sync_type" form:"sync_type"`
- SyncTime int64 `gorm:"column:sync_time" json:"sync_time" form:"sync_time"`
- SyncResultType int `gorm:"column:sync_result_type" json:"sync_result_type" form:"sync_result_type"`
- SyncRsultRemark string `gorm:"column:sync_result_remark" json:"sync_result_remark" form:"sync_result_remark"`
- SyncTotalNum int64 `gorm:"column:sync_total_num" json:"sync_total_num" form:"sync_total_num"`
- SyncSuccessNum int64 `gorm:"column:sync_success_num" json:"sync_success_num" form:"sync_success_num"`
- SyncInfo string `gorm:"column:sync_info" json:"sync_info" form:"sync_info"`
- CreateTime int64 `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime int64 `gorm:"column:update_time" json:"update_time" form:"update_time"`
- }
-
- func (DataUpload) TableName() string {
- return "data_sync_info"
- }
-
- type DataUploadConfig struct {
- ID int64 `gorm:"column:id" json:"id"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- ProvinceId int64 `gorm:"column:province_id" json:"province_id"`
- CityId int64 `gorm:"column:city_id" json:"city_id"`
- GatewayAddress string `gorm:"column:gateway_address" json:"gateway_address"`
- AppId string `gorm:"column:app_id" json:"app_id"`
- Key string `gorm:"column:key" json:"key"`
- Status int64 `gorm:"column:status" json:"status"`
- CreateTime int64 `gorm:"column:create_time" json:"create_time"`
- ModifyTime int64 `gorm:"column:modify_time" json:"modify_time"`
- TimeQuantum int64 `gorm:"column:time_quantum" json:"time_quantum"`
- DepartmentName string `gorm:"column:department_name" json:"department_name"`
- HospitalId int64 `gorm:"column:hospital_id" json:"hospital_id"`
- InstType int64 `gorm:"column:inst_type" json:"inst_type"`
- DbHost string `gorm:"column:db_host" json:"db_host"`
- DbPort string `gorm:"column:db_port" json:"db_port"`
- DbUser string `gorm:"column:db_user" json:"db_user"`
- DbPass string `gorm:"column:db_pass" json:"db_pass"`
- DbName string `gorm:"column:db_name" json:"db_name"`
- }
-
- func (DataUploadConfig) TableName() string {
- return "data_upload_config"
- }
-
- type TempHdShift struct {
- ID int64 `gorm:"column:id" json:"id"`
- PsId string `gorm:"column:ps_id" json:"ps_id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
- ScheduleDate time.Time `gorm:"column:schedule_date" json:"schedule_date"`
- ShiftType string `gorm:"column:shift_type" json:"shift_type"`
- SickbedNo string `gorm:"column:sickbed_no" json:"sickbed_no"`
- ScheduleStatus string `gorm:"column:schedule_status" json:"schedule_status"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
- }
-
- func (TempHdShift) TableName() string {
- return "t_hd_shift"
- }
-
- type TempHdDoctorsAdvice struct {
- ID int64 `gorm:"column:id" json:"id"`
- MedicalOrDerId string `gorm:"column:medical_or_der_id" json:"medical_or_der_id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
- DialysisId string `gorm:"column:dialysis_id" json:"dialysis_id"`
- OrderType string `gorm:"column:order_type" json:"order_type"`
- RrtType string `gorm:"column:rrt_type" json:"rrt_type"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
- DialysisDuration int64 `gorm:"column:dialysis_duration" json:"dialysis_duration"`
- BloodVol int64 `gorm:"column:blood_vol" json:"blood_vol"`
- DryWeigh float64 `gorm:"column:dry_weigh" json:"dry_weigh"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
- }
-
- func (TempHdDoctorsAdvice) TableName() string {
- return "t_hd_doctors_advice"
- }
-
- type TempHdDialysis struct {
- ID int64 `gorm:"column:id" json:"id"`
- DialysisId string `gorm:"column:dialysis_id" json:"dialysis_id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
- PsId string `gorm:"column:ps_id" json:"ps_id"`
- DialysisDate time.Time `gorm:"column:dialysis_date" json:"dialysis_date"`
- SickbedNo string `gorm:"column:sickbed_no" json:"sickbed_no"`
- DivisionId string `gorm:"column:division_id" json:"division_id"`
- EquipmentId string `gorm:"column:equipment_id" json:"equipment_id"`
- MixDalysis string `gorm:"column:mix_dalysis" json:"mix_dalysis"`
- ActualufMl int64 `gorm:"column:actualuf_ml" json:"actualuf_ml"`
- Ufv int64 `gorm:"column:ufv" json:"ufv"`
- TotalReplace int64 `gorm:"column:total_replace" json:"total_replace"`
- TotalTreatDuration int64 `gorm:"column:total_treat_duration" json:"total_treat_duration"`
- IsHospitalozation string `gorm:"column:is_hospitalozation" json:"is_hospitalozation"`
- IsEmergency string `gorm:"column:is_emergency" json:"is_emergency"`
- EmergencyReason string `gorm:"column:emergency_reason" json:"emergency_reason"`
- IsPerioperativePeriod string `gorm:"column:is_perioperative_period" json:"is_perioperative_period"`
- BeforeSbp int64 `gorm:"column:before_sbp" json:"before_sbp"`
- BeforeDbp int64 `gorm:"column:before_dbp" json:"before_dbp"`
- AfterSbp int64 `gorm:"column:after_sbp" json:"after_sbp"`
- AfterDbp int64 `gorm:"column:after_dbp" json:"after_dbp"`
- BeforeWeight float64 `gorm:"column:before_weight" json:"before_weight"`
- AfterWeight float64 `gorm:"column:after_weight" json:"after_weight"`
- AccessId string `gorm:"column:access_id" json:"access_id"`
- DialyzerId string `gorm:"column:dialyzer_id" json:"dialyzer_id"`
- Ktv float64 `gorm:"column:ktv" json:"ktv"`
- StartTime time.Time `gorm:"column:start_time" json:"start_time"`
- EndTime time.Time `gorm:"column:end_time" json:"end_time"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
- }
-
- func (TempHdDialysis) TableName() string {
- return "t_hd_dialysis"
- }
-
- type TempHdMiddle struct {
- ID int64 `gorm:"column:id" json:"id"`
- Sn string `gorm:"column:sn" json:"sn"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk"`
- DialysisId string `gorm:"column:dialysis_id" json:"dialysis_id"`
- MonitorTime time.Time `gorm:"column:monitor_time" json:"monitor_time"`
- Sbp int64 `gorm:"column:sbp" json:"sbp"`
- Dbp int64 `gorm:"column:dbp" json:"dbp"`
- P int64 `gorm:"column:p" json:"p"`
- Ns int64 `gorm:"column:ns" json:"ns"`
- Qb int64 `gorm:"column:qb" json:"qb"`
- Ap int64 `gorm:"column:ap" json:"ap"`
- Vp int64 `gorm:"column:vp" json:"vp"`
- Tmp int64 `gorm:"column:tmp" json:"tmp"`
- Ufr int64 `gorm:"column:ufr" json:"ufr"`
- Ufv int64 `gorm:"column:ufv" json:"ufv"`
- OnLine int64 `gorm:"column:on_line" json:"on_line"`
- Spo2 float64 `gorm:"column:spo2" json:"spo2"`
- R int64 `gorm:"column:r" json:"r"`
- OtherSituation string `gorm:"column:other_situation" json:"other_situation"`
- Nurse string `gorm:"column:nurse" json:"nurse"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
- }
-
- func (TempHdMiddle) TableName() string {
- return "t_hd_middle"
- }
-
- type TempHdDivision struct {
- ID int64 `gorm:"column:id" json:"id"`
- DivisionId string `gorm:"column:division_id" json:"division_id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id"`
- DevisionName string `gorm:"column:devision_name" json:"devision_name"`
- UpdateFlag string `gorm:"column:update_flag" json:"update_flag"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2"`
- }
-
- func (TempHdDivision) TableName() string {
- return "t_hd_division"
- }
|