1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309 |
- package sz
-
- import "time"
-
- type TempHdHospital struct {
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- InstType string `gorm:"column:inst_type" json:"inst_type" form:"inst_type"`
- DepartmentName string `gorm:"column:department_name" json:"department_name" form:"department_name"`
- AuthorizedBeds int64 `gorm:"column:authorized_beds" json:"authorized_beds" form:"authorized_beds"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdHospital) TableName() string {
- return "t_hd_hospital"
- }
-
- type TempHdStaff struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- StaffId string `gorm:"column:staff_id" json:"staff_id" form:"staff_id"`
- IdType string `gorm:"column:id_type" json:"id_type" form:"id_type"`
- IdNo string `gorm:"column:id_no" json:"id_no" form:"id_no"`
- StaffName string `gorm:"column:staff_name" json:"staff_name" form:"staff_name"`
- Position int64 `gorm:"column:position" json:"position" form:"position"`
- TrainingName string `gorm:"column:training_name" json:"training_name" form:"training_name"`
- PracticeCertificate string `gorm:"column:practice_certificate" json:"practice_certificate" form:"practice_certificate"`
- PracticeCertificateNo string `gorm:"column:practice_certificate_no" json:"practice_certificate_no" form:"practice_certificate_no"`
- QualificationCertificate string `gorm:"column:qualification_certificate" json:"qualification_certificate" form:"qualification_certificate"`
- QualificationType string `gorm:"column:qualification_type" json:"qualification_type" form:"qualification_type"`
- PermanentType int64 `gorm:"column:permanent_type" json:"permanent_type" form:"permanent_type"`
- DiplomaFile string `gorm:"column:diploma_file" json:"diploma_file" form:"diploma_file"`
- DegreeCertificateFile string `gorm:"column:degree_certificate_file" json:"degree_certificate_file" form:"degree_certificate_file"`
- TrainingCertificateFile string `gorm:"column:training_certificate_file" json:"training_certificate_file" form:"training_certificate_file"`
- PracticeCertificateFile string `gorm:"column:practice_certificate_file" json:"practice_certificate_file" form:"practice_certificate_file"`
- QualificationCertificateFile string `gorm:"column:qualification_certificate_file" json:"qualification_certificate_file" form:"qualification_certificate_file"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- TrainingDate time.Time `gorm:"column:training_date" json:"training_date" form:"training_date"`
- InDate time.Time `gorm:"column:in_date" json:"in_date" form:"in_date"`
- OutDate time.Time `gorm:"column:out_date" json:"out_date" form:"out_date"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- TechnicalPosition int64 `gorm:"column:technical_position" json:"technical_position" form:"technical_position"`
- StaffLevel int64 `gorm:"column:staff_level" json:"staff_level" form:"staff_level"`
- IsAdvanced int64 `gorm:"column:is_advanced" json:"is_advanced" form:"is_advanced"`
- HospitalPosition int64 `gorm:"column:hospital_position" json:"hospital_position" form:"hospital_position"`
- StaffNo string `gorm:"column:staff_no" json:"staff_no" form:"staff_no"`
- Education string `gorm:"column:education" json:"education" form:"education"`
- Specialty string `gorm:"column:specialty" json:"specialty" form:"specialty"`
- StaffDegree string `gorm:"column:staff_degree" json:"staff_degree" form:"staff_degree"`
- StaffStatus int64 `gorm:"column:staff_status" json:"staff_status" form:"staff_status"`
- }
-
- func (TempHdStaff) TableName() string {
- return "t_hd_staff"
- }
-
- type TempHdLayout struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- PartitionName string `gorm:"column:partition_name" json:"partition_name" form:"partition_name"`
- PartitionImg string `gorm:"column:partition_img" json:"partition_img" form:"partition_img"`
- FunctionArea string `gorm:"column:function_area" json:"function_area" form:"function_area"`
- Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- }
-
- func (TempHdLayout) TableName() string {
- return "t_hd_layout"
- }
-
- 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"`
- DivisionName string `gorm:"column:division_name" json:"division_name"`
- Xgbz string `gorm:"column:xgbz" json:"xgbz"`
- DivisionType string `gorm:"column:division_type" json:"division_type"`
- 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 (TempHdDivision) TableName() string {
- return "t_hd_division"
- }
-
- 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"`
- SickbedType string `gorm:"column:sickbed_type" json:"sickbed_type"`
- 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" form:"id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- EquipmentId string `gorm:"column:equipment_id" json:"equipment_id" form:"equipment_id"`
- EquipmentBrand string `gorm:"column:equipment_brand" json:"equipment_brand" form:"equipment_brand"`
- EquipmentModel string `gorm:"column:equipment_model" json:"equipment_model" form:"equipment_model"`
- EnableTime time.Time `gorm:"column:enable_time" json:"enable_time" form:"enable_time"`
- DiscardedTime time.Time `gorm:"column:discarded_time" json:"discarded_time" form:"discarded_time"`
- EquipmentType int64 `gorm:"column:equipment_type" json:"equipment_type" form:"equipment_type"`
- Temperature string `gorm:"column:temperature" json:"temperature" form:"temperature"`
- Humidity string `gorm:"column:humidity" json:"humidity" form:"humidity"`
- Pressure string `gorm:"column:pressure" json:"pressure" form:"pressure"`
- PressureUnit int64 `gorm:"column:pressure_unit" json:"pressure_unit" form:"pressure_unit"`
- QualityStandard string `gorm:"column:quality_standard" json:"quality_standard" form:"quality_standard"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj int64 `gorm:"column:mj" json:"mj" form:"mj"`
- Ylyl1 int64 `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 int64 `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdWm) TableName() string {
- return "t_hd_wm"
- }
-
- type TempHdMaintain struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- EquipmentId string `gorm:"column:equipment_id" json:"equipment_id" form:"equipment_id"`
- EquipmentType string `gorm:"column:equipment_type" json:"equipment_type" form:"equipment_type"`
- RepairTime time.Time `gorm:"column:repair_time" json:"repair_time" form:"repair_time"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"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" form:"id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- EquipmentId string `gorm:"column:equipment_id" json:"equipment_id" form:"equipment_id"`
- EquipmentBrand string `gorm:"column:equipment_brand" json:"equipment_brand" form:"equipment_brand"`
- EquipmentModel string `gorm:"column:equipment_model" json:"equipment_model" form:"equipment_model"`
- EnableTime time.Time `gorm:"column:enable_time" json:"enable_time" form:"enable_time"`
- DiscardedTime time.Time `gorm:"column:discarded_time" json:"discarded_time" form:"discarded_time"`
- Status int64 `gorm:"column:status" json:"status" form:"status"`
- EquipmentType int64 `gorm:"column:equipment_type" json:"equipment_type" form:"equipment_type"`
- Xgbz string `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj int64 `gorm:"column:mj" json:"mj" form:"mj"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdOtherMachine) TableName() string {
- return "t_hd_other_machine"
- }
-
- type TempHdPatient struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- PatientNk int64 `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- CardNo string `gorm:"column:card_no" json:"card_no" form:"card_no"`
- CardType int64 `gorm:"column:card_type" json:"card_type" form:"card_type"`
- IdNo string `gorm:"column:id_no" json:"id_no" form:"id_no"`
- IdType string `gorm:"column:id_type" json:"id_type" form:"id_type"`
- PatientName string `gorm:"column:patient_name" json:"patient_name" form:"patient_name"`
- Gender string `gorm:"column:gender" json:"gender" form:"gender"`
- BornDate time.Time `gorm:"column:born_date" json:"born_date" form:"born_date"`
- DiagnosisSummary string `gorm:"column:diagnosis_summary" json:"diagnosis_summary" form:"diagnosis_summary"`
- IsCrf string `gorm:"column:is_crf" json:"is_crf" form:"is_crf"`
- AllergyHistory string `gorm:"column:allergy_history" json:"allergy_history" form:"allergy_history"`
- PayMethod string `gorm:"column:pay_method" json:"pay_method" form:"pay_method"`
- LocalInsurance int64 `gorm:"column:local_insurance" json:"local_insurance" form:"local_insurance"`
- DialysisStartTime time.Time `gorm:"column:dialysis_start_time" json:"dialysis_start_time" form:"dialysis_start_time"`
- LocalStartTime time.Time `gorm:"column:local_start_time" json:"local_start_time" form:"local_start_time"`
- OutpatientNo string `gorm:"column:outpatient_no" json:"outpatient_no" form:"outpatient_no"`
- HospitalizedNo string `gorm:"column:hospitalized_no" json:"hospitalized_no" form:"hospitalized_no"`
- Height int64 `gorm:"column:height" json:"height" form:"height"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj int64 `gorm:"column:mj" json:"mj" form:"mj"`
- Ylyl1 int64 `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 int64 `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdPatient) TableName() string {
- return "t_hd_patient"
- }
-
- type TempHdPatientOut struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- SequelaeDate time.Time `gorm:"column:sequelae_date" json:"sequelae_date" form:"sequelae_date"`
- SequelaeType string `gorm:"column:sequelae_type" json:"sequelae_type" form:"sequelae_type"`
- SequelaeSubType string `gorm:"column:sequelae_sub_type" json:"sequelae_sub_type" form:"sequelae_sub_type"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- DeathReason string `gorm:"column:death_reason" json:"death_reason" form:"death_reason"`
- ExtReason string `gorm:"column:ext_reason" json:"ext_reason" form:"ext_reason"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdPatientOut) TableName() string {
- return "t_hd_patient_out"
- }
-
- type TempHdPs struct {
- PrescribeId string `gorm:"column:prescribe_id" json:"prescribe_id" form:"prescribe_id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- MedicalId string `gorm:"column:medical_id" json:"medical_id" form:"medical_id"`
- DrId int64 `gorm:"column:dr_id" json:"dr_id" form:"dr_id"`
- RrtType int64 `gorm:"column:rrt_type" json:"rrt_type" form:"rrt_type"`
- RrtTypeName string `gorm:"column:rrt_type_name" json:"rrt_type_name" form:"rrt_type_name"`
- DialysisFrequency int64 `gorm:"column:dialysis_frequency" json:"dialysis_frequency" form:"dialysis_frequency"`
- FrequencyUnit int64 `gorm:"column:frequency_unit" json:"frequency_unit" form:"frequency_unit"`
- PrescribeTime time.Time `gorm:"column:prescribe_time" json:"prescribe_time" form:"prescribe_time"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj int64 `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdPs) TableName() string {
- return "t_hd_ps"
- }
-
- type TempHdPsMedicine struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- Sn int64 `gorm:"column:sn" json:"sn" form:"sn"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- MedicineTypeId string `gorm:"column:medicine_type_id" json:"medicine_type_id" form:"medicine_type_id"`
- MedicineId string `gorm:"column:medicine_id" json:"medicine_id" form:"medicine_id"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdPsMedicine) TableName() string {
- return "t_hd_ps_medicine"
- }
-
- type TempHdInfection struct {
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- Hbv int64 `gorm:"column:hbv" json:"hbv" form:"hbv"`
- Hcv int64 `gorm:"column:hcv" json:"hcv" form:"hcv"`
- Rpr int64 `gorm:"column:rpr" json:"rpr" form:"rpr"`
- Hiv int64 `gorm:"column:hiv" json:"hiv" form:"hiv"`
- Hbsag int64 `gorm:"column:hbsag" json:"hbsag" form:"hbsag"`
- Hbsab int64 `gorm:"column:hbsab" json:"hbsab" form:"hbsab"`
- Hbeag int64 `gorm:"column:hbeag" json:"hbeag" form:"hbeag"`
- Hbeab int64 `gorm:"column:hbeab" json:"hbeab" form:"hbeab"`
- Hbcab int64 `gorm:"column:hbcab" json:"hbcab" form:"hbcab"`
- CheckDate time.Time `gorm:"column:check_date" json:"check_date" form:"check_date"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- DoctorId string `gorm:"column:doctor_id" json:"doctor_id" form:"doctor_id"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdInfection) TableName() string {
- return "t_hd_infection"
- }
-
- type TempHdInhospital struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- MedicalNo string `gorm:"column:medical_no" json:"medical_no" form:"medical_no"`
- AdmissionTime time.Time `gorm:"column:admission_time" json:"admission_time" form:"admission_time"`
- AdmissionCause int64 `gorm:"column:admission_cause" json:"admission_cause" form:"admission_cause"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- PatientNk int64 `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- AdmissionCauseDesc string `gorm:"column:admission_cause_desc" json:"admission_cause_desc" form:"admission_cause_desc"`
- }
-
- func (TempHdInhospital) TableName() string {
- return "t_hd_inhospital"
- }
-
- type TempHdOuthospital struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- MedicalNo string `gorm:"column:medical_no" json:"medical_no" form:"medical_no"`
- DischargeDate time.Time `gorm:"column:discharge_date" json:"discharge_date" form:"discharge_date"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 int64 `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 int64 `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- PatientNk int64 `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- }
-
- 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 string `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" form:"id"`
- PsId string `gorm:"column:ps_id" json:"ps_id" form:"ps_id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- ScheduleDate time.Time `gorm:"column:schedule_date" json:"schedule_date" form:"schedule_date"`
- ShiftType string `gorm:"column:shift_type" json:"shift_type" form:"shift_type"`
- SickbedNo int64 `gorm:"column:sickbed_no" json:"sickbed_no" form:"sickbed_no"`
- ScheduleStatus string `gorm:"column:schedule_status" json:"schedule_status" form:"schedule_status"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdShift) TableName() string {
- return "t_hd_shift"
- }
-
- type TempHdDoctorsAdvice struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- MedicalOrderId string `gorm:"column:medical_order_id" json:"medical_order_id" form:"medical_order_id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- DialysisId string `gorm:"column:dialysis_id" json:"dialysis_id" form:"dialysis_id"`
- OrderType string `gorm:"column:order_type" json:"order_type" form:"order_type"`
- RrtType int64 `gorm:"column:rrt_type" json:"rrt_type" form:"rrt_type"`
- RrtTypeName string `gorm:"column:rrt_type_name" json:"rrt_type_name" form:"rrt_type_name"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- DialysisDuration int64 `gorm:"column:dialysis_duration" json:"dialysis_duration" form:"dialysis_duration"`
- BloodVol int64 `gorm:"column:blood_vol" json:"blood_vol" form:"blood_vol"`
- DryWeight float64 `gorm:"column:dry_weight" json:"dry_weight" form:"dry_weight"`
- Txq int64 `gorm:"column:txq" json:"txq" form:"txq"`
- FluxLevel int64 `gorm:"column:flux_level" json:"flux_level" form:"flux_level"`
- ReuseFlag int64 `gorm:"column:reuse_flag" json:"reuse_flag" form:"reuse_flag"`
- MembraneType int64 `gorm:"column:membrane_type" json:"membrane_type" form:"membrane_type"`
- MembraneSize int64 `gorm:"column:membrane_size" json:"membrane_size" form:"membrane_size"`
- Dlflow int64 `gorm:"column:dlflow" json:"dlflow" form:"dlflow"`
- DlTemperature int64 `gorm:"column:dl_temperature" json:"dl_temperature" form:"dl_temperature"`
- ReplacementMode int64 `gorm:"column:replacement_mode" json:"replacement_mode" form:"replacement_mode"`
- RlAmount int64 `gorm:"column:rl_amount" json:"rl_amount" form:"rl_amount"`
- Anticoagulant int64 `gorm:"column:anticoagulant" json:"anticoagulant" form:"anticoagulant"`
- AnticoagulantQuantity int64 `gorm:"column:anticoagulant_quantity" json:"anticoagulant_quantity" form:"anticoagulant_quantity"`
- InitialAmount int64 `gorm:"column:initial_amount" json:"initial_amount" form:"initial_amount"`
- DlPotassium int64 `gorm:"column:dl_potassium" json:"dl_potassium" form:"dl_potassium"`
- DlSodium int64 `gorm:"column:dl_sodium" json:"dl_sodium" form:"dl_sodium"`
- BicarbonateRadical int64 `gorm:"column:bicarbonate_radical" json:"bicarbonate_radical" form:"bicarbonate_radical"`
- MaintenanceQuantity int64 `gorm:"column:maintenance_quantity" json:"maintenance_quantity" form:"maintenance_quantity"`
- Conductivity int64 `gorm:"column:conductivity" json:"conductivity" form:"conductivity"`
- DlCalcium int64 `gorm:"column:dl_calcium" json:"dl_calcium" form:"dl_calcium"`
- ExecuteOrder int64 `gorm:"column:execute_order" json:"execute_order" form:"execute_order"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdDoctorsAdvice) TableName() string {
- return "t_hd_doctors_advice"
- }
-
- type TempHdDialysis struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- DialysisId string `gorm:"column:dialysis_id" json:"dialysis_id" form:"dialysis_id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- PsId string `gorm:"column:ps_id" json:"ps_id" form:"ps_id"`
- DialysisDate time.Time `gorm:"column:dialysis_date" json:"dialysis_date" form:"dialysis_date"`
- SickbedNo string `gorm:"column:sickbed_no" json:"sickbed_no" form:"sickbed_no"`
- DivisionId string `gorm:"column:division_id" json:"division_id" form:"division_id"`
- EquipmentId string `gorm:"column:equipment_id" json:"equipment_id" form:"equipment_id"`
- MixDialysis string `gorm:"column:mix_dialysis" json:"mix_dialysis" form:"mix_dialysis"`
- ActualufMl int64 `gorm:"column:actualuf_ml" json:"actualuf_ml" form:"actualuf_ml"`
- Ufv int64 `gorm:"column:ufv" json:"ufv" form:"ufv"`
- TotalReplace int64 `gorm:"column:total_replace" json:"total_replace" form:"total_replace"`
- TotalTreatDuration int64 `gorm:"column:total_treat_duration" json:"total_treat_duration" form:"total_treat_duration"`
- IsHospitalization string `gorm:"column:is_hospitalization" json:"is_hospitalization" form:"is_hospitalization"`
- IsEmergency string `gorm:"column:is_emergency" json:"is_emergency" form:"is_emergency"`
- EmergencyReason string `gorm:"column:emergency_reason" json:"emergency_reason" form:"emergency_reason"`
- IsPerioperativePeriod string `gorm:"column:is_perioperative_period" json:"is_perioperative_period" form:"is_perioperative_period"`
- BeforeSbp int64 `gorm:"column:before_sbp" json:"before_sbp" form:"before_sbp"`
- BeforeDbp int64 `gorm:"column:before_dbp" json:"before_dbp" form:"before_dbp"`
- AfterSbp int64 `gorm:"column:after_sbp" json:"after_sbp" form:"after_sbp"`
- AfterDbp int64 `gorm:"column:after_dbp" json:"after_dbp" form:"after_dbp"`
- BeforeWeight float64 `gorm:"column:before_weight" json:"before_weight" form:"before_weight"`
- AfterWeight float64 `gorm:"column:after_weight" json:"after_weight" form:"after_weight"`
- AccessId string `gorm:"column:access_id" json:"access_id" form:"access_id"`
- DialyzerId string `gorm:"column:dialyzer_id" json:"dialyzer_id" form:"dialyzer_id"`
- Ktv float64 `gorm:"column:ktv" json:"ktv" form:"ktv"`
- Urr float64 `gorm:"column:urr" json:"urr" form:"urr"`
- BeforeBun float64 `gorm:"column:before_bun" json:"before_bun" form:"before_bun"`
- AfterBun float64 `gorm:"column:after_bun" json:"after_bun" form:"after_bun"`
- ChargeDoctorId string `gorm:"column:charge_doctor_id" json:"charge_doctor_id" form:"charge_doctor_id"`
- ChargeNurseId string `gorm:"column:charge_nurse_id" json:"charge_nurse_id" form:"charge_nurse_id"`
- UpNurseId string `gorm:"column:up_nurse_id" json:"up_nurse_id" form:"up_nurse_id"`
- DownNurseId string `gorm:"column:down_nurse_id" json:"down_nurse_id" form:"down_nurse_id"`
- CheckNurseId string `gorm:"column:check_nurse_id" json:"check_nurse_id" form:"check_nurse_id"`
- PunctureNurseId string `gorm:"column:puncture_nurse_id" json:"puncture_nurse_id" form:"puncture_nurse_id"`
- StartTime time.Time `gorm:"column:start_time" json:"start_time" form:"start_time"`
- EndTime time.Time `gorm:"column:end_time" json:"end_time" form:"end_time"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdDialysis) TableName() string {
- return "t_hd_dialysis"
- }
-
- type TempHdMiddle struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- Sn int64 `gorm:"column:sn" json:"sn" form:"sn"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- DialysisId string `gorm:"column:dialysis_id" json:"dialysis_id" form:"dialysis_id"`
- MonitorTime time.Time `gorm:"column:monitor_time" json:"monitor_time" form:"monitor_time"`
- Sbp int64 `gorm:"column:sbp" json:"sbp" form:"sbp"`
- Dbp int64 `gorm:"column:dbp" json:"dbp" form:"dbp"`
- P int64 `gorm:"column:p" json:"p" form:"p"`
- Ns int64 `gorm:"column:ns" json:"ns" form:"ns"`
- Qb int64 `gorm:"column:qb" json:"qb" form:"qb"`
- Ap int64 `gorm:"column:ap" json:"ap" form:"ap"`
- Vp int64 `gorm:"column:vp" json:"vp" form:"vp"`
- Tmp int64 `gorm:"column:tmp" json:"tmp" form:"tmp"`
- Ufr int64 `gorm:"column:ufr" json:"ufr" form:"ufr"`
- Ufv int64 `gorm:"column:ufv" json:"ufv" form:"ufv"`
- OnLine int64 `gorm:"column:on_line" json:"on_line" form:"on_line"`
- Spo2 float64 `gorm:"column:spo2" json:"spo2" form:"spo2"`
- RespiratorySystem int64 `gorm:"column:respiratory_system" json:"respiratory_system" form:"respiratory_system"`
- OtherSituation string `gorm:"column:other_situation" json:"other_situation" form:"other_situation"`
- Nurse string `gorm:"column:nurse" json:"nurse" form:"nurse"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdMiddle) TableName() string {
- return "t_hd_middle"
- }
-
- type TempHdAccess struct {
- AccessId int64 `gorm:"column:access_id" json:"access_id" form:"access_id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- AccessType int64 `gorm:"column:access_type" json:"access_type" form:"access_type"`
- AccessTypeName string `gorm:"column:access_type_name" json:"access_type_name" form:"access_type_name"`
- AccessStatus int64 `gorm:"column:access_status" json:"access_status" form:"access_status"`
- ChannelPosition int64 `gorm:"column:channel_position" json:"channel_position" form:"channel_position"`
- CatheterSite int64 `gorm:"column:catheter_site" json:"catheter_site" form:"catheter_site"`
- RemoveTime time.Time `gorm:"column:remove_time" json:"remove_time" form:"remove_time"`
- RemoveReason int64 `gorm:"column:remove_reason" json:"remove_reason" form:"remove_reason"`
- RemoveReasonDesc string `gorm:"column:remove_reason_desc" json:"remove_reason_desc" form:"remove_reason_desc"`
- SetupDate time.Time `gorm:"column:setup_date" json:"setup_date" form:"setup_date"`
- FirstUseTime time.Time `gorm:"column:first_use_time" json:"first_use_time" form:"first_use_time"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdAccess) TableName() string {
- return "t_hd_access"
- }
-
- type TempHdSickbed struct {
- SickbedNo int64 `gorm:"column:sickbed_no" json:"sickbed_no" form:"sickbed_no"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- DivisionId string `gorm:"column:division_id" json:"division_id" form:"division_id"`
- SickbedCode string `gorm:"column:sickbed_code" json:"sickbed_code" form:"sickbed_code"`
- SickbedType string `gorm:"column:sickbed_type" json:"sickbed_type" form:"sickbed_type"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdSickbed) TableName() string {
- return "t_hd_sickbed"
- }
-
- type TempHdDiagnosis struct {
- DiagnosisId int64 `gorm:"column:diagnosis_id" json:"diagnosis_id" form:"diagnosis_id"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- DiagnosisTime time.Time `gorm:"column:diagnosis_time" json:"diagnosis_time" form:"diagnosis_time"`
- DiagnosisType string `gorm:"column:diagnosis_type" json:"diagnosis_type" form:"diagnosis_type"`
- DiagnosisTypeItem string `gorm:"column:diagnosis_type_item" json:"diagnosis_type_item" form:"diagnosis_type_item"`
- DiagnosisTypeDetail string `gorm:"column:diagnosis_type_detail" json:"diagnosis_type_detail" form:"diagnosis_type_detail"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdDiagnosis) TableName() string {
- return "t_hd_diagnosis"
- }
-
- type TempHdComplication struct {
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- DialysisId int64 `gorm:"column:dialysis_id" json:"dialysis_id" form:"dialysis_id"`
- MonitorId int64 `gorm:"column:monitor_id" json:"monitor_id" form:"monitor_id"`
- NeopathyTime int64 `gorm:"column:neopathy_time" json:"neopathy_time" form:"neopathy_time"`
- NeopathyType string `gorm:"column:neopathy_type" json:"neopathy_type" form:"neopathy_type"`
- NeopathyDesc string `gorm:"column:neopathy_desc" json:"neopathy_desc" form:"neopathy_desc"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdComplication) TableName() string {
- return "t_hd_complication"
- }
-
- type TempHdLisReport struct {
- LabSno string `gorm:"column:lab_sno" json:"lab_sno" form:"lab_sno"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- ReportDate time.Time `gorm:"column:report_date" json:"report_date" form:"report_date"`
- CheckDate string `gorm:"column:check_date" json:"check_date" form:"check_date"`
- JzNo string `gorm:"column:jz_no" json:"jz_no" form:"jz_no"`
- MzFlag string `gorm:"column:mz_flag" json:"mz_flag" form:"mz_flag"`
- ZyNo string `gorm:"column:zy_no" json:"zy_no" form:"zy_no"`
- MzNo string `gorm:"column:mz_no" json:"mz_no" form:"mz_no"`
- DepartmentCode string `gorm:"column:department_code" json:"department_code" form:"department_code"`
- DepartmentName string `gorm:"column:department_name" json:"department_name" form:"department_name"`
- CardNo string `gorm:"column:card_no" json:"card_no" form:"card_no"`
- CardType string `gorm:"column:card_type" json:"card_type" form:"card_type"`
- PatientName string `gorm:"column:patient_name" json:"patient_name" form:"patient_name"`
- DepCode string `gorm:"column:dep_code" json:"dep_code" form:"dep_code"`
- DepName string `gorm:"column:dep_name" json:"dep_name" form:"dep_name"`
- InspectedType string `gorm:"column:inspected_type" json:"inspected_type" form:"inspected_type"`
- ReportCategry string `gorm:"column:report_categry" json:"report_categry" form:"report_categry"`
- ApplicationName string `gorm:"column:application_name" json:"application_name" form:"application_name"`
- ApplicationType string `gorm:"column:application_type" json:"application_type" form:"application_type"`
- CheckName string `gorm:"column:check_name" json:"check_name" form:"check_name"`
- CheckItemName string `gorm:"column:check_item_name" json:"check_item_name" form:"check_item_name"`
- CheckItemCode string `gorm:"column:check_item_code" json:"check_item_code" form:"check_item_code"`
- RecordCcount int64 `gorm:"column:record_ccount" json:"record_ccount" form:"record_ccount"`
- CheckResult string `gorm:"column:check_result" json:"check_result" form:"check_result"`
- DiagnoseCode string `gorm:"column:diagnose_code" json:"diagnose_code" form:"diagnose_code"`
- DiagnoseName string `gorm:"column:diagnose_name" json:"diagnose_name" form:"diagnose_name"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdLisReport) TableName() string {
- return "t_hd_lis_report"
- }
-
- type TempHdLisIndicators struct {
- InspectedResultNo string `gorm:"column:inspected_result_no" json:"inspected_result_no" form:"inspected_result_no"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- LabSno string `gorm:"column:lab_sno" json:"lab_sno" form:"lab_sno"`
- ReportDate time.Time `gorm:"column:report_date" json:"report_date" form:"report_date"`
- CheckDate time.Time `gorm:"column:check_date" json:"check_date" form:"check_date"`
- InspectedIndicate string `gorm:"column:inspected_indicate" json:"inspected_indicate" form:"inspected_indicate"`
- InspectedItemEnName string `gorm:"column:inspected_item_en_name" json:"inspected_item_en_name" form:"inspected_item_en_name"`
- Method string `gorm:"column:method" json:"method" form:"method"`
- InspectedItemCnName string `gorm:"column:inspected_item_cn_name" json:"inspected_item_cn_name" form:"inspected_item_cn_name"`
- InspectedResultDesc string `gorm:"column:inspected_result_desc" json:"inspected_result_desc" form:"inspected_result_desc"`
- InspectedResultValue string `gorm:"column:inspected_result_value" json:"inspected_result_value" form:"inspected_result_value"`
- InspectedResultUnit string `gorm:"column:inspected_result_unit" json:"inspected_result_unit" form:"inspected_result_unit"`
- Loinc string `gorm:"column:loinc" json:"loinc" form:"loinc"`
- RefRange string `gorm:"column:ref_range" json:"ref_range" form:"ref_range"`
- UnitType string `gorm:"column:unit_type" json:"unit_type" form:"unit_type"`
- InspectedResult int64 `gorm:"column:inspected_result" json:"inspected_result" form:"inspected_result"`
- Yctssm string `gorm:"column:yctssm" json:"yctssm" form:"yctssm"`
- Sfwjz string `gorm:"column:sfwjz" json:"sfwjz" form:"sfwjz"`
- Sorting int64 `gorm:"column:sorting" json:"sorting" form:"sorting"`
- PrintGroup int64 `gorm:"column:print_group" json:"print_group" form:"print_group"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdLisIndicators) TableName() string {
- return "t_hd_lis_indicators"
- }
-
- type TempHdLisCulture struct {
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- EquitmentId int64 `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
- InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
- IsQualified int64 `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
- InspectedValue int64 `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
- IsSubstitutionQualified int64 `gorm:"column:is_substitution_qualified" json:"is_substitution_qualified" form:"is_substitution_qualified"`
- SubstitutionInspectedValue int64 `gorm:"column:substitution_inspected_value" json:"substitution_inspected_value" form:"substitution_inspected_value"`
- CaseOrder int64 `gorm:"column:case_order" json:"case_order" form:"case_order"`
- UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdLisCulture) TableName() string {
- return "t_hd_dm_dialysate_bc"
- }
-
- type TempHdLisDialysate struct {
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- EquitmentId int64 `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
- InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
- IsQualified int64 `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
- InspectedValue int64 `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
- CaseOrder int64 `gorm:"column:case_order" json:"case_order" form:"case_order"`
- UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdLisDialysate) TableName() string {
- return "t_hd_dm_dialysate_en"
- }
-
- type TempHdLisAirDisinfect struct {
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
-
- InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
- IsQualified int64 `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
- InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
- CaseOrder int64 `gorm:"column:case_order" json:"case_order" form:"case_order"`
- UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdLisAirDisinfect) TableName() string {
- return "t_hd_air_disinfect"
- }
-
- type TempHdLisBodyDisinfect struct {
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
- IsQualified int64 `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
- InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
- CaseOrder int64 `gorm:"column:case_order" json:"case_order" form:"case_order"`
- UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdLisBodyDisinfect) TableName() string {
- return "xt_body_detection"
- }
-
- type TempHdLisWaterFc struct {
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
- WaterType int64 `gorm:"column:water_type" json:"water_type" form:"water_type"`
- InspectionOrgId string `gorm:"column:inspection_org_id" json:"inspection_org_id" form:"inspection_org_id"`
- InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
- IsQualified int64 `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
- InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
- CaseOrder int64 `gorm:"column:case_order" json:"case_order" form:"case_order"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdLisWaterFc) TableName() string {
- return "t_hd_water_fc"
- }
-
- type TempHdLisWaterNc struct {
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
- WaterType int64 `gorm:"column:water_type" json:"water_type" form:"water_type"`
- InspectionOrgId string `gorm:"column:inspection_org_id" json:"inspection_org_id" form:"inspection_org_id"`
- InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
- IsQualified int64 `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
- InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
- CaseOrder int64 `gorm:"column:case_order" json:"case_order" form:"case_order"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdLisWaterNc) TableName() string {
- return "t_hd_water_nc"
- }
-
- type TempHdLisWaterPh struct {
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
- WaterType int64 `gorm:"column:water_type" json:"water_type" form:"water_type"`
- InspectionOrgId string `gorm:"column:inspection_org_id" json:"inspection_org_id" form:"inspection_org_id"`
- InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
- IsQualified int64 `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
- InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
- CaseOrder int64 `gorm:"column:case_order" json:"case_order" form:"case_order"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdLisWaterPh) TableName() string {
- return "t_hd_water_ph"
- }
-
- type TempHdLisWaterWh struct {
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
- WaterType int64 `gorm:"column:water_type" json:"water_type" form:"water_type"`
- InspectionOrgId string `gorm:"column:inspection_org_id" json:"inspection_org_id" form:"inspection_org_id"`
- InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
- IsQualified int64 `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
- InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
- CaseOrder int64 `gorm:"column:case_order" json:"case_order" form:"case_order"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdLisWaterWh) TableName() string {
- return "t_hd_water_wh"
- }
-
- type TempHdCi struct {
- InfectSn string `gorm:"column:infect_sn" json:"infect_sn" form:"infect_sn"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- AccessId string `gorm:"column:access_id" json:"access_id" form:"access_id"`
- CiType int64 `gorm:"column:ci_type" json:"ci_type" form:"ci_type"`
- BloodCulture int64 `gorm:"column:blood_culture" json:"blood_culture" form:"blood_culture"`
- InfectionDate time.Time `gorm:"column:infection_date" json:"infection_date" form:"infection_date"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdCi) TableName() string {
- return "t_hd_ci"
- }
-
- type TempHdCiOutCome struct {
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- InfectSn string `gorm:"column:infect_sn" json:"infect_sn" form:"infect_sn"`
- PatientNk string `gorm:"column:patient_nk" json:"patient_nk" form:"patient_nk"`
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- SequelaeType int64 `gorm:"column:sequelae_type" json:"sequelae_type" form:"sequelae_type"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- }
-
- func (TempHdCiOutCome) TableName() string {
- return "t_hd_ci_outcome"
- }
-
- type TempHdLisWaterBc struct {
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
- WaterType int64 `gorm:"column:water_type" json:"water_type" form:"water_type"`
- InspectionOrgId string `gorm:"column:inspection_org_id" json:"inspection_org_id" form:"inspection_org_id"`
- InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
- IsQualified int64 `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
- InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
- CaseOrder int64 `gorm:"column:case_order" json:"case_order" form:"case_order"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- }
-
- func (TempHdLisWaterBc) TableName() string {
- return "t_hd_water_bc"
- }
-
- type TempHdLisWaterEn struct {
- HospitalId string `gorm:"column:hospital_id" json:"hospital_id" form:"hospital_id"`
- Sn string `gorm:"column:sn" json:"sn" form:"sn"`
- EquitmentId string `gorm:"column:equitment_id" json:"equitment_id" form:"equitment_id"`
- WaterType int64 `gorm:"column:water_type" json:"water_type" form:"water_type"`
- InspectionOrgId string `gorm:"column:inspection_org_id" json:"inspection_org_id" form:"inspection_org_id"`
- InspectionTime time.Time `gorm:"column:inspection_time" json:"inspection_time" form:"inspection_time"`
- IsQualified int64 `gorm:"column:is_qualified" json:"is_qualified" form:"is_qualified"`
- InspectedValue string `gorm:"column:inspected_value" json:"inspected_value" form:"inspected_value"`
- CaseOrder int64 `gorm:"column:case_order" json:"case_order" form:"case_order"`
- Sjscsj time.Time `gorm:"column:sjscsj" json:"sjscsj" form:"sjscsj"`
- Xgbz int64 `gorm:"column:xgbz" json:"xgbz" form:"xgbz"`
- Ylyl1 string `gorm:"column:ylyl1" json:"ylyl1" form:"ylyl1"`
- Ylyl2 string `gorm:"column:ylyl2" json:"ylyl2" form:"ylyl2"`
- UploadFile string `gorm:"column:upload_file" json:"upload_file" form:"upload_file"`
- Mj string `gorm:"column:mj" json:"mj" form:"mj"`
- CreateTime time.Time `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdateTime time.Time `gorm:"column:update_time" json:"update_time" form:"update_time"`
- }
-
- func (TempHdLisWaterEn) TableName() string {
- return "t_hd_water_en"
- }
-
- type TBDICPractitioner struct {
- GH string `gorm:"column:GH" json:"GH" form:"GH"`
- YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
- ZCM string `gorm:"column:ZCM" json:"ZCM" form:"ZCM"`
- XM string `gorm:"column:XM" json:"XM" form:"XM"`
- XBBM string `gorm:"column:XBBM" json:"XBBM" form:"XBBM"`
- SSKS string `gorm:"column:SSKS" json:"SSKS" form:"SSKS"`
- SZYWKSMC string `gorm:"column:SZYWKSMC" json:"SZYWKSMC" form:"SZYWKSMC"`
- ZWDM string `gorm:"column:ZWDM" json:"ZWDM" form:"ZWDM"`
- ZHIW string `gorm:"column:ZHIW" json:"ZHIW" form:"ZHIW"`
- ZCDM string `gorm:"column:ZCDM" json:"ZCDM" form:"ZCDM"`
- ZHIC string `gorm:"column:ZHIC" json:"ZHIC" form:"ZHIC"`
- NNRYLDQK string `gorm:"column:NNRYLDQK" json:"NNRYLDQK" form:"NNRYLDQK"`
- BZQK string `gorm:"column:BZQK" json:"BZQK" form:"BZQK"`
- LB string `gorm:"column:LB" json:"LB" form:"LB"`
- // ZZKYRYBS string `gorm:"column:ZZKYRYBS" json:"ZZKYRYBS" form:"ZZKYRYBS"`
- YWSCSJ time.Time `gorm:"column:YWSCSJ" json:"YWSCSJ" form:"YWSCSJ"`
- SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
- XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
- }
-
- func (TBDICPractitioner) TableName() string {
- return "TB_DIC_Practitioner"
- }
-
- type TM_DICT_BED struct {
- YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
- CWBM string `gorm:"column:CWBM" json:"CWBM" form:"CWBM"`
- CH string `gorm:"column:CH" json:"CH" form:"CH"`
- SSKSDM string `gorm:"column:SSKSDM" json:"SSKSDM" form:"SSKSDM"`
- SSKSMC string `gorm:"column:SSKSMC" json:"SSKSMC" form:"SSKSMC"`
- CWLX string `gorm:"column:CWLX" json:"CWLX" form:"CWLX"`
- CWZT string `gorm:"column:CWZT" json:"ZWDM" form:"CWZT"`
- DYZLXMDJ string `gorm:"column:DYZLXMDJ" json:"DYZLXMDJ" form:"DYZLXMDJ"`
- ZYH string `gorm:"column:ZYH" json:"ZYH" form:"ZYH"`
- YWSCSJ time.Time `gorm:"column:YWSCSJ" json:"YWSCSJ" form:"YWSCSJ"`
- SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
- XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
- }
-
- func (TM_DICT_BED) TableName() string {
- return "TM_DICT_BED"
- }
-
- type TB_MZ_Patient_Information struct {
- KH string `gorm:"column:KH" json:"KH" form:"KH"`
- KLX string `gorm:"column:KLX" json:"KLX" form:"KLX"`
- YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
- FKDQ string `gorm:"column:FKDQ" json:"FKDQ" form:"FKDQ"`
- ZJHM string `gorm:"column:ZJHM" json:"ZJHM" form:"ZJHM"`
- ZJLXDM string `gorm:"column:ZJLXDM" json:"ZJLXDM" form:"ZJLXDM"`
- ZJLXMC string `gorm:"column:ZJLXMC" json:"ZJLXMC" form:"ZJLXMC"`
- XM string `gorm:"column:XM" json:"XM" form:"XM"`
- CSRQ string `gorm:"column:CSRQ" json:"CSRQ" form:"CSRQ"`
- MZDM string `gorm:"column:MZDM" json:"MZDM" form:"MZDM"`
- MZMC string `gorm:"column:MZMC" json:"MZMC" form:"MZMC"`
- GJDM string `gorm:"column:GJDM" json:"GJDM" form:"GJDM"`
- GJMC string `gorm:"column:GJMC" json:"GJMC" form:"GJMC"`
- SJHM string `gorm:"column:SJHM" json:"SJHM" form:"SJHM"`
- XBDM string `gorm:"column:XBDM" json:"XBDM" form:"XBDM"`
- XBMC string `gorm:"column:XBMC" json:"XBMC" form:"XBMC"`
- HZLXDM string `gorm:"column:HZLXDM" json:"HZLXDM" form:"HZLXDM"`
- HZLXMC string `gorm:"column:HZLXMC" json:"HZLXMC" form:"HZLXMC"`
- YWSCSJ time.Time `gorm:"column:YWSCSJ" json:"YWSCSJ" form:"YWSCSJ"`
- SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
- XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
- }
-
- func (TB_MZ_Patient_Information) TableName() string {
- return "TB_MZ_Patient_Information"
- }
-
-
- type TB_HIS_MZ_Reg struct {
- GHRQ string `gorm:"column:GHRQ" json:"GHRQ" form:"GHRQ"`
- JZLSH string `gorm:"column:JZLSH" json:"JZLSH" form:"JZLSH"`
- GTHBZ string `gorm:"column:GTHBZ" json:"GTHBZ" form:"GTHBZ"`
- YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
- STFBH string `gorm:"column:STFBH" json:"STFBH" form:"STFBH"`
- GTHSJ string `gorm:"column:GTHSJ" json:"GTHSJ" form:"GTHSJ"`
- GHHX string `gorm:"column:GHHX" json:"GHHX" form:"GHHX"`
- GHLB string `gorm:"column:GHLB" json:"GHLB" form:"GHLB"`
- GHMC string `gorm:"column:GHMC" json:"GHMC" form:"GHMC"`
- YLFYLYDM string `gorm:"column:YLFYLYDM" json:"YLFYLYDM" form:"YLFYLYDM"`
- YLBXLBDM string `gorm:"column:YLBXLBDM" json:"YLBXLBDM" form:"YLBXLBDM"`
- YBZHBZ string `gorm:"column:YBZHBZ" json:"YBZHBZ" form:"YBZHBZ"`
- SSJYBZ string `gorm:"column:SSJYBZ" json:"SSJYBZ" form:"SSJYBZ"`
- KSBM string `gorm:"column:KSBM" json:"KSBM" form:"KSBM"`
- KSMC string `gorm:"column:KSMC" json:"KSMC" form:"KSMC"`
- YSBM string `gorm:"column:YSBM" json:"YSBM" form:"YSBM"`
- YSXM string `gorm:"column:YSXM" json:"YSXM" form:"YSXM"`
- TXBZ string `gorm:"column:TXBZ" json:"TXBZ" form:"TXBZ"`
- WDBZ string `gorm:"column:WDBZ" json:"WDBZ" form:"WDBZ"`
- KH string `gorm:"column:KH" json:"KH" form:"KH"`
- KLX string `gorm:"column:KLX" json:"KLX" form:"KLX"`
- SFYY string `gorm:"column:SFYY" json:"SFYY" form:"SFYY"`
- GHRCBS string `gorm:"column:GHRCBS" json:"GHRCBS" form:"GHRCBS"`
- GHFY float64 `gorm:"column:GHFY" json:"GHFY" form:"GHFY"`
- JMGHF float64 `gorm:"column:JMGHF" json:"JMGHF" form:"JMGHF"`
- ZJF float64 `gorm:"column:ZJF" json:"ZJF" form:"ZJF"`
- JMZJF float64 `gorm:"column:JMZJF" json:"JMZJF" form:"JMZJF"`
- QTF string `gorm:"column:QTF" json:"QTF" form:"QTF"`
- CZYBM string `gorm:"column:CZYBM" json:"CZYBM" form:"CZYBM"`
- CZYXM string `gorm:"column:CZYXM" json:"CZYXM" form:"CZYXM"`
- SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
- XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
- }
-
- func (TB_HIS_MZ_Reg) TableName() string {
- return "TB_HIS_MZ_Reg"
- }
-
-
- type TB_YL_MZ_Medical_Record struct {
- YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
- JZLSH string `gorm:"column:JZLSH" json:"JZLSH" form:"JZLSH"`
- KH string `gorm:"column:KH" json:"KH" form:"KH"`
- KLX string `gorm:"column:KLX" json:"KLX" form:"KLX"`
- MJZH string `gorm:"column:MJZH" json:"MJZH" form:"MJZH"`
- HZXM string `gorm:"column:HZXM" json:"HZXM" form:"HZXM"`
- JZLX string `gorm:"column:JZLX" json:"JZLX" form:"JZLX"`
- CZBZ string `gorm:"column:CZBZ" json:"CZBZ" form:"CZBZ"`
- SFTH string `gorm:"column:SFTH" json:"SFTH" form:"SFTH"`
- YLBXLBDM string `gorm:"column:YLBXLBDM" json:"YLBXLBDM" form:"YLBXLBDM"`
- YLFKFSDM string `gorm:"column:YLFKFSDM" json:"YLFKFSDM" form:"YLFKFSDM"`
- TXBZ string `gorm:"column:TXBZ" json:"TXBZ" form:"TXBZ"`
- YBZHBZ string `gorm:"column:YBZHBZ" json:"YBZHBZ" form:"YBZHBZ"`
- WDBZ string `gorm:"column:WDBZ" json:"WDBZ" form:"WDBZ"`
- SFSYZYZLJS string `gorm:"column:SFSYZYZLJS" json:"SFSYZYZLJS" form:"SFSYZYZLJS"`
- ZYZLJSLB string `gorm:"column:ZYZLJSLB" json:"ZYZLJSLB" form:"ZYZLJSLB"`
- SFSYZYZHLJS string `gorm:"column:SFSYZYZHLJS" json:"SFSYZYZHLJS" form:"SFSYZYZHLJS"`
- JZKSBM string `gorm:"column:JZKSBM" json:"JZKSBM" form:"JZKSBM"`
- JZKSMC string `gorm:"column:JZKSMC" json:"JZKSMC" form:"JZKSMC"`
- JZKSRQ string `gorm:"column:JZKSRQ" json:"JZKSRQ" form:"JZKSRQ"`
- ZZYSGH string `gorm:"column:ZZYSGH" json:"ZZYSGH" form:"ZZYSGH"`
- ZZYSXM string `gorm:"column:ZZYSXM" json:"ZZYSXM" form:"ZZYSXM"`
- YWSCSJ time.Time `gorm:"column:YWSCSJ" json:"YWSCSJ" form:"YWSCSJ"`
- SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
- XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
- }
-
- func (TB_YL_MZ_Medical_Record) TableName() string {
- return "TB_YL_MZ_Medical_Record"
- }
-
- type TB_CIS_Prescription struct {
- YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
- CYH string `gorm:"column:CYH" json:"CYH" form:"CYH"`
- JZLSH string `gorm:"column:JZLSH" json:"JZLSH" form:"JZLSH"`
- KH string `gorm:"column:KH" json:"KH" form:"KH"`
- KLX string `gorm:"column:KLX" json:"KLX" form:"KLX"`
- CFLX string `gorm:"column:CFLX" json:"CFLX" form:"CFLX"`
- YPLX string `gorm:"column:YPLX" json:"YPLX" form:"YPLX"`
- ZYYPCFLB string `gorm:"column:ZYYPCFLB" json:"ZYYPCFLB" form:"ZYYPCFLB"`
- CFJS string `gorm:"column:CFJS" json:"CFJS" form:"CFJS"`
- JZKSDM string `gorm:"column:JZKSDM" json:"JZKSDM" form:"JZKSDM"`
- JZKSMC string `gorm:"column:JZKSMC" json:"JZKSMC" form:"JZKSMC"`
- KFYS string `gorm:"column:KFYS" json:"KFYS" form:"KFYS"`
- KFYSXM string `gorm:"column:KFYSXM" json:"KFYSXM" form:"KFYSXM"`
- KFRQ string `gorm:"column:KFRQ" json:"KFRQ" form:"KFRQ"`
- CFLRSJ string `gorm:"column:CFLRSJ" json:"CFLRSJ" form:"CFLRSJ"`
- SGCFBZ string `gorm:"column:SGCFBZ" json:"SGCFBZ" form:"SGCFBZ"`
- CFYPJE float64 `gorm:"column:CFYPJE" json:"CFYPJE" form:"CFYPJE"`
- SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
- XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
- }
-
- func (TB_CIS_Prescription) TableName() string {
- return "TB_CIS_Prescription"
- }
-
- type TB_CIS_Prescription_Detail struct {
- YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
- CYH string `gorm:"column:CYH" json:"CYH" form:"CYH"`
- CFMXH string `gorm:"column:CFMXH" json:"CFMXH" form:"CFMXH"`
- JZLSH string `gorm:"column:JZLSH" json:"JZLSH" form:"JZLSH"`
- XMBM string `gorm:"column:XMBM" json:"XMBM" form:"XMBM"`
- XMBMYB string `gorm:"column:XMBMYB" json:"XMBMYB" form:"XMBMYB"`
- XMMC string `gorm:"column:XMMC" json:"XMMC" form:"XMMC"`
- XMSL float64 `gorm:"column:XMSL" json:"XMSL" form:"XMSL"`
- XMDW string `gorm:"column:XMDW" json:"XMDW" form:"XMDW"`
- XMDJ float64 `gorm:"column:XMDJ" json:"XMDJ" form:"XMDJ"`
- XMJE float64 `gorm:"column:XMJE" json:"XMJE" form:"XMJE"`
- XMLB string `gorm:"column:XMLB" json:"XMLB" form:"XMLB"`
- YWFLDM string `gorm:"column:YWFLDM" json:"YWFLDM" form:"YWFLDM"`
- SFJJ string `gorm:"column:SFJJ" json:"SFJJ" form:"SFJJ"`
- SFPS string `gorm:"column:SFPS" json:"SFPS" form:"SFPS"`
- YPGG string `gorm:"column:YPGG" json:"YPGG" form:"YPGG"`
- SCPH string `gorm:"column:SCPH" json:"SCPH" form:"SCPH"`
- YXQZ string `gorm:"column:YXQZ" json:"YXQZ" form:"YXQZ"`
- SYPCDM string `gorm:"column:SYPCDM" json:"SYPCDM" form:"SYPCDM"`
- SYPC string `gorm:"column:SYPC" json:"SYPC" form:"SYPC"`
- JL float64 `gorm:"column:JL" json:"JL" form:"JL"`
- DW string `gorm:"column:DW" json:"DW" form:"DW"`
- MCSL float64 `gorm:"column:MCSL" json:"MCSL" form:"MCSL"`
- MCDW string `gorm:"column:MCDW" json:"MCDW" form:"MCDW"`
- YF string `gorm:"column:YF" json:"YF" form:"YF"`
- YPYF string `gorm:"column:YPYF" json:"YPYF" form:"YPYF"`
- YYTS int64 `gorm:"column:YYTS" json:"YYTS" form:"YYTS"`
- YWSYZJL float64 `gorm:"column:YWSYZJL" json:"YWSYZJL" form:"YWSYZJL"`
- YWSYZJLDW string `gorm:"column:YWSYZJLDW" json:"YWSYZJLDW" form:"YWSYZJLDW"`
- SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
- XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
- }
-
- func (TB_CIS_Prescription_Detail) TableName() string {
- return "TB_CIS_Prescription_Detail"
- }
-
- type TB_HIS_MZ_Charge struct {
- STFRQ string `gorm:"column:STFRQ" json:"STFRQ" form:"STFRQ"`
- STFBH string `gorm:"column:STFBH" json:"STFBH" form:"STFBH"`
- STFBZ string `gorm:"column:STFBZ" json:"STFBZ" form:"STFBZ"`
- YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
- GHBM string `gorm:"column:GHBM" json:"GHBM" form:"GHBM"`
- KH string `gorm:"column:KH" json:"KH" form:"KH"`
- KLX string `gorm:"column:KLX" json:"KLX" form:"KLX"`
- FPH string `gorm:"column:FPH" json:"FPH" form:"FPH"`
- YLFKFSDM string `gorm:"column:YLFKFSDM" json:"YLFKFSDM" form:"YLFKFSDM"`
- YLBXLBDM string `gorm:"column:YLBXLBDM" json:"YLBXLBDM" form:"YLBXLBDM"`
- YBZHBZ string `gorm:"column:YBZHBZ" json:"YBZHBZ" form:"YBZHBZ"`
- SSJYBZ string `gorm:"column:SSJYBZ" json:"SSJYBZ" form:"SSJYBZ"`
- ZLLX string `gorm:"column:ZLLX" json:"ZLLX" form:"ZLLX"`
- WDBZ string `gorm:"column:WDBZ" json:"WDBZ" form:"WDBZ"`
- STFSJ string `gorm:"column:STFSJ" json:"STFSJ" form:"STFSJ"`
- STFZE float64 `gorm:"column:STFZE" json:"STFZE" form:"STFZE"`
- SSJE float64 `gorm:"column:SSJE" json:"SSJE" form:"SSJE"`
- YBFWWZF float64 `gorm:"column:YBFWWZF" json:"YBFWWZF" form:"YBFWWZF"`
- TXFYE string `gorm:"column:TXFYE" json:"TXFYE" form:"TXFYE"`
- TXYF string `gorm:"column:TXYF" json:"TXYF" form:"TXYF"`
- GHF string `gorm:"column:GHF" json:"GHF" form:"GHF"`
- ZLF string `gorm:"column:ZLF" json:"ZLF" form:"ZLF"`
- ZHF float64 `gorm:"column:ZHF" json:"ZHF" form:"ZHF"`
- JCF float64 `gorm:"column:JCF" json:"JCF" form:"JCF"`
- SSF float64 `gorm:"column:SSF" json:"SSF" form:"SSF"`
- WSCLF float64 `gorm:"column:WSCLF" json:"WSCLF" form:"WSCLF"`
- CWF float64 `gorm:"column:CWF" json:"CWF" form:"CWF"`
- HLF string `gorm:"column:HLF" json:"HLF" form:"HLF"`
- YSFWF string `gorm:"column:YSFWF" json:"YSFWF" form:"YSFWF"`
- YBZLF string `gorm:"column:YBZLF" json:"YBZLF" form:"YBZLF"`
- HYF float64 `gorm:"column:HYF" json:"HYF" form:"HYF"`
- TSF string `gorm:"column:TSF" json:"TSF" form:"TSF"`
- SPF string `gorm:"column:SPF" json:"SPF" form:"SPF"`
- XYF float64 `gorm:"column:XYF" json:"XYF" form:"XYF"`
- YHJE float64 `gorm:"column:YHJE" json:"YHJE" form:"YHJE"`
- ZFJE float64 `gorm:"column:ZFJE" json:"ZFJE" form:"ZFJE"`
- YBJZ float64 `gorm:"column:YBJZ" json:"YBJZ" form:"YBJZ"`
- YBJJ float64 `gorm:"column:YBJJ" json:"YBJJ" form:"YBJJ"`
- YBZE float64 `gorm:"column:YBZE" json:"YBZE" form:"YBZE"`
- YBZF float64 `gorm:"column:YBZF" json:"YBZF" form:"YBZF"`
- ZCYF float64 `gorm:"column:ZCYF" json:"ZCYF" form:"ZCYF"`
- ZYZJF string `gorm:"column:ZYZJF" json:"ZYZJF" form:"ZYZJF"`
- ZCAF string `gorm:"column:ZCAF" json:"ZCAF" form:"ZCAF"`
- QTF float64 `gorm:"column:QTF" json:"QTF" form:"QTF"`
- CFZS string `gorm:"column:CFZS" json:"CFZS" form:"CFZS"`
- SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
- XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
- }
-
- func (TB_HIS_MZ_Charge) TableName() string {
- return "TB_HIS_MZ_Charge"
- }
-
- type TB_HIS_MZ_Fee_Detail struct {
- SFMXID string `gorm:"column:SFMXID" json:"SFMXID" form:"SFMXID"`
- TFBZ string `gorm:"column:TFBZ" json:"TFBZ" form:"TFBZ"`
- YLJGDM string `gorm:"column:YLJGDM" json:"YLJGDM" form:"YLJGDM"`
- JZLSH string `gorm:"column:JZLSH" json:"JZLSH" form:"JZLSH"`
- STFBH string `gorm:"column:STFBH" json:"STFBH" form:"STFBH"`
- KH string `gorm:"column:KH" json:"KH" form:"KH"`
- KLX string `gorm:"column:KLX" json:"KLX" form:"KLX"`
- ZLLX string `gorm:"column:ZLLX" json:"ZLLX" form:"ZLLX"`
- YLFKFSDM string `gorm:"column:YLFKFSDM" json:"YLFKFSDM" form:"YLFKFSDM"`
- FPH string `gorm:"column:FPH" json:"FPH" form:"FPH"`
- STFSJ string `gorm:"column:STFSJ" json:"STFSJ" form:"STFSJ"`
- MXFYLB string `gorm:"column:MXFYLB" json:"MXFYLB" form:"MXFYLB"`
- MXXMBM string `gorm:"column:MXXMBM" json:"MXXMBM" form:"MXXMBM"`
- MXXMBMYB string `gorm:"column:MXXMBMYB" json:"MXXMBMYB" form:"MXXMBMYB"`
- MXXMMC string `gorm:"column:MXXMMC" json:"MXXMMC" form:"MXXMMC"`
- MXXMDW string `gorm:"column:MXXMDW" json:"MXXMDW" form:"MXXMDW"`
- MXXMDJ float64 `gorm:"column:MXXMDJ" json:"MXXMDJ" form:"MXXMDJ"`
- MXXMSL float64 `gorm:"column:MXXMSL" json:"MXXMSL" form:"MXXMSL"`
- MXXMJE float64 `gorm:"column:MXXMJE" json:"MXXMJE" form:"MXXMJE"`
- KDKSBM string `gorm:"column:KDKSBM" json:"KDKSBM" form:"KDKSBM"`
- KDKSMC string `gorm:"column:KDKSMC" json:"KDKSMC" form:"KDKSMC"`
- KDRGH string `gorm:"column:KDRGH" json:"KDRGH" form:"KDRGH"`
- KDRXM string `gorm:"column:KDRXM" json:"KDRXM" form:"KDRXM"`
- ZXKSBM string `gorm:"column:ZXKSBM" json:"ZXKSBM" form:"ZXKSBM"`
- ZXKSMC string `gorm:"column:ZXKSMC" json:"ZXKSMC" form:"ZXKSMC"`
- SJSCSJ time.Time `gorm:"column:SJSCSJ" json:"SJSCSJ" form:"SJSCSJ"`
- XGBZ int64 `gorm:"column:XGBZ" json:"XGBZ" form:"XGBZ"`
- }
-
- func (TB_HIS_MZ_Fee_Detail) TableName() string {
- return "TB_HIS_MZ_Fee_Detail"
- }
|