|
@@ -256,6 +256,7 @@ type HisDoctorAdviceInfo struct {
|
256
|
256
|
LmtUsedFlag int64 `gorm:"column:lmt_used_flag" json:"lmt_used_flag" form:"lmt_used_flag"`
|
257
|
257
|
HisOrderInfo HisOrderInfo `gorm:"ForeignKey:AdviceId;AssociationForeignKey:ID" json:"order_info"`
|
258
|
258
|
IsMedicine int64 `gorm:"column:is_medicine" json:"is_medicine" form:"is_medicine"`
|
|
259
|
+ ExecutionFrequencyId int64 `gorm:"column:execution_frequency_id" json:"execution_frequency_id" form:"execution_frequency_id"`
|
259
|
260
|
}
|
260
|
261
|
|
261
|
262
|
func (HisDoctorAdviceInfo) TableName() string {
|
|
@@ -803,10 +804,11 @@ type HisPrintPrescriptionProject struct {
|
803
|
804
|
|
804
|
805
|
XtHisProjectTeam XtHisProjectTeam `gorm:"ForeignKey:TeamId;AssociationForeignKey:ID" json:"team"`
|
805
|
806
|
|
806
|
|
- FrequencyType int64 `gorm:"column:frequency_type" json:"frequency_type" form:"frequency_type"`
|
807
|
|
- DayCount int64 `gorm:"column:day_count" json:"day_count" form:"day_count"`
|
808
|
|
- WeekDay string `gorm:"column:week_day" json:"week_day" form:"week_day"`
|
809
|
|
- IsCheckTeam int64 `gorm:"-" json:"is_check_team" form:"is_check_team"`
|
|
807
|
+ FrequencyType int64 `gorm:"column:frequency_type" json:"frequency_type" form:"frequency_type"`
|
|
808
|
+ DayCount int64 `gorm:"column:day_count" json:"day_count" form:"day_count"`
|
|
809
|
+ WeekDay string `gorm:"column:week_day" json:"week_day" form:"week_day"`
|
|
810
|
+ IsCheckTeam int64 `gorm:"-" json:"is_check_team" form:"is_check_team"`
|
|
811
|
+ ExecutionFrequencyId int64 `gorm:"column:execution_frequency_id" json:"execution_frequency_id" form:"execution_frequency_id"`
|
810
|
812
|
}
|
811
|
813
|
|
812
|
814
|
func (HisPrintPrescriptionProject) TableName() string {
|
|
@@ -851,11 +853,12 @@ type HisPrescriptionProject struct {
|
851
|
853
|
|
852
|
854
|
XtHisProjectTeam XtHisProjectTeam `gorm:"ForeignKey:TeamId;AssociationForeignKey:ID" json:"team"`
|
853
|
855
|
|
854
|
|
- FrequencyType int64 `gorm:"column:frequency_type" json:"frequency_type" form:"frequency_type"`
|
855
|
|
- DayCount int64 `gorm:"column:day_count" json:"day_count" form:"day_count"`
|
856
|
|
- WeekDay string `gorm:"column:week_day" json:"week_day" form:"week_day"`
|
857
|
|
- IsCheckTeam int64 `gorm:"-" json:"is_check_team" form:"is_check_team"`
|
858
|
|
- HisOrderInfo HisOrderInfo `gorm:"ForeignKey:ProjectId;AssociationForeignKey:ID" json:"order_info"`
|
|
856
|
+ FrequencyType int64 `gorm:"column:frequency_type" json:"frequency_type" form:"frequency_type"`
|
|
857
|
+ DayCount int64 `gorm:"column:day_count" json:"day_count" form:"day_count"`
|
|
858
|
+ WeekDay string `gorm:"column:week_day" json:"week_day" form:"week_day"`
|
|
859
|
+ IsCheckTeam int64 `gorm:"-" json:"is_check_team" form:"is_check_team"`
|
|
860
|
+ HisOrderInfo HisOrderInfo `gorm:"ForeignKey:ProjectId;AssociationForeignKey:ID" json:"order_info"`
|
|
861
|
+ ExecutionFrequencyId int64 `gorm:"column:execution_frequency_id" json:"execution_frequency_id" form:"execution_frequency_id"`
|
859
|
862
|
}
|
860
|
863
|
|
861
|
864
|
func (HisPrescriptionProject) TableName() string {
|
|
@@ -1932,11 +1935,12 @@ type NewCustomHisPrescriptionProject struct {
|
1932
|
1935
|
|
1933
|
1936
|
XtHisProjectTeam XtHisProjectTeam `gorm:"ForeignKey:TeamId;AssociationForeignKey:ID" json:"team"`
|
1934
|
1937
|
|
1935
|
|
- FrequencyType int64 `gorm:"column:frequency_type" json:"frequency_type" form:"frequency_type"`
|
1936
|
|
- DayCount int64 `gorm:"column:day_count" json:"day_count" form:"day_count"`
|
1937
|
|
- WeekDay string `gorm:"column:week_day" json:"week_day" form:"week_day"`
|
1938
|
|
- IsCheckTeam int64 `gorm:"-" json:"is_check_team" form:"is_check_team"`
|
1939
|
|
- HisOrderInfo HisOrderInfo `gorm:"ForeignKey:ProjectId;AssociationForeignKey:ID" json:"order_info"`
|
|
1938
|
+ FrequencyType int64 `gorm:"column:frequency_type" json:"frequency_type" form:"frequency_type"`
|
|
1939
|
+ DayCount int64 `gorm:"column:day_count" json:"day_count" form:"day_count"`
|
|
1940
|
+ WeekDay string `gorm:"column:week_day" json:"week_day" form:"week_day"`
|
|
1941
|
+ IsCheckTeam int64 `gorm:"-" json:"is_check_team" form:"is_check_team"`
|
|
1942
|
+ HisOrderInfo HisOrderInfo `gorm:"ForeignKey:ProjectId;AssociationForeignKey:ID" json:"order_info"`
|
|
1943
|
+ ExecutionFrequencyId int64 `gorm:"column:execution_frequency_id" json:"execution_frequency_id" form:"execution_frequency_id"`
|
1940
|
1944
|
}
|
1941
|
1945
|
|
1942
|
1946
|
func (NewCustomHisPrescriptionProject) TableName() string {
|
|
@@ -1964,24 +1968,25 @@ func (HisYidiClearRecord) TableName() string {
|
1964
|
1968
|
}
|
1965
|
1969
|
|
1966
|
1970
|
type HisPrescriptionProjectTwo struct {
|
1967
|
|
- ID int64 `gorm:"column:id" json:"id" form:"id"`
|
1968
|
|
- ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
|
1969
|
|
- Price float64 `gorm:"column:price" json:"price" form:"price"`
|
1970
|
|
- UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
1971
|
|
- Status int64 `gorm:"column:status" json:"status" form:"status"`
|
1972
|
|
- PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
|
1973
|
|
- RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
|
1974
|
|
- PrescriptionId int64 `gorm:"column:prescription_id" json:"prescription_id" form:"prescription_id"`
|
1975
|
|
- Count string `gorm:"column:count" json:"count" form:"count"`
|
1976
|
|
- FeedetlSn string `gorm:"column:feedetl_sn" json:"feedetl_sn" form:"feedetl_sn"`
|
1977
|
|
- Type int64 `gorm:"column:type" json:"type" form:"type"`
|
1978
|
|
- Doctor int64 `gorm:"column:doctor" json:"doctor" form:"doctor"`
|
1979
|
|
- ExecutionTime int64 `gborm:"column:execution_time" json:"execution_time" form:"execution_time"`
|
1980
|
|
- ExecutionStaff int64 `gorm:"column:execution_staff" json:"execution_staff" form:"execution_staff"`
|
1981
|
|
- ExecutionState int64 `gorm:"column:execution_state" json:"execution_state" form:"execution_state"`
|
1982
|
|
- CheckTime int64 `gorm:"column:check_time" json:"check_time" form:"check_time"`
|
1983
|
|
- CheckState int64 `gorm:"column:check_state" json:"check_state" form:"check_state"`
|
1984
|
|
- Checker int64 `gorm:"column:checker" json:"checker" form:"checker"`
|
|
1971
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
1972
|
+ ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
|
|
1973
|
+ Price float64 `gorm:"column:price" json:"price" form:"price"`
|
|
1974
|
+ UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
|
1975
|
+ Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
1976
|
+ PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
|
|
1977
|
+ RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
|
|
1978
|
+ PrescriptionId int64 `gorm:"column:prescription_id" json:"prescription_id" form:"prescription_id"`
|
|
1979
|
+ Count string `gorm:"column:count" json:"count" form:"count"`
|
|
1980
|
+ FeedetlSn string `gorm:"column:feedetl_sn" json:"feedetl_sn" form:"feedetl_sn"`
|
|
1981
|
+ Type int64 `gorm:"column:type" json:"type" form:"type"`
|
|
1982
|
+ Doctor int64 `gorm:"column:doctor" json:"doctor" form:"doctor"`
|
|
1983
|
+ ExecutionTime int64 `gborm:"column:execution_time" json:"execution_time" form:"execution_time"`
|
|
1984
|
+ ExecutionStaff int64 `gorm:"column:execution_staff" json:"execution_staff" form:"execution_staff"`
|
|
1985
|
+ ExecutionState int64 `gorm:"column:execution_state" json:"execution_state" form:"execution_state"`
|
|
1986
|
+ CheckTime int64 `gorm:"column:check_time" json:"check_time" form:"check_time"`
|
|
1987
|
+ CheckState int64 `gorm:"column:check_state" json:"check_state" form:"check_state"`
|
|
1988
|
+ Checker int64 `gorm:"column:checker" json:"checker" form:"checker"`
|
|
1989
|
+ ExecutionFrequencyId int64 `gorm:"column:execution_frequency_id" json:"execution_frequency_id" form:"execution_frequency_id"`
|
1985
|
1990
|
}
|
1986
|
1991
|
|
1987
|
1992
|
func (HisPrescriptionProjectTwo) TableName() string {
|
|
@@ -2369,3 +2374,54 @@ type HisHospitalCheckRecordTwenty struct {
|
2369
|
2374
|
func (HisHospitalCheckRecordTwenty) TableName() string {
|
2370
|
2375
|
return "his_hospital_check_record"
|
2371
|
2376
|
}
|
|
2377
|
+
|
|
2378
|
+type UploadInfo struct {
|
|
2379
|
+ Bce02a string `json:"bce02a"`
|
|
2380
|
+ Bck01c string `json:"bck01c"`
|
|
2381
|
+ Diag []*Diag
|
|
2382
|
+ Fasong string `json:"fasong"`
|
|
2383
|
+ PresInfo []*PresInfo
|
|
2384
|
+ Vaa01 int `json:"vaa01"`
|
|
2385
|
+ Vaa07 int `json:"vaa07"`
|
|
2386
|
+}
|
|
2387
|
+
|
|
2388
|
+type Diag struct {
|
|
2389
|
+ Bak02 string `json:"bak02"`
|
|
2390
|
+ Vao06 string `json:"vao06"`
|
|
2391
|
+}
|
|
2392
|
+
|
|
2393
|
+type PresDetail struct {
|
|
2394
|
+ Item []*Item
|
|
2395
|
+ Vaf59 string `json:"vaf59"`
|
|
2396
|
+}
|
|
2397
|
+
|
|
2398
|
+type PresInfo struct {
|
|
2399
|
+ Cbm06 string `json:"cbm06"`
|
|
2400
|
+ Cbm07 string `json:"cbm07"`
|
|
2401
|
+ Cbmid string `json:"cbmid"`
|
|
2402
|
+ PresDetail []*PresDetail
|
|
2403
|
+}
|
|
2404
|
+
|
|
2405
|
+type Item struct {
|
|
2406
|
+ Bbx01 string `json:"bbx01"`
|
|
2407
|
+ Bby01 string `json:"bby01"`
|
|
2408
|
+ Bck01b string `json:"bck01b"`
|
|
2409
|
+ Bck01d string `json:"bck01d"`
|
|
2410
|
+ Bda01 string `json:"bda01"`
|
|
2411
|
+ Bdi01 string `json:"bdi01"`
|
|
2412
|
+ Rownr string `json:"rownr"`
|
|
2413
|
+ Vaf11 string `json:"vaf11"`
|
|
2414
|
+ Vaf14 string `json:"vaf14"`
|
|
2415
|
+ Vaf15 string `json:"vaf15"`
|
|
2416
|
+ Vaf17 string `json:"vaf17"`
|
|
2417
|
+ Vaf18 int `json:"vaf18"`
|
|
2418
|
+ Vaf19 string `json:"vaf19"`
|
|
2419
|
+ Vaf20 string `json:"vaf20"`
|
|
2420
|
+ Vaf21 string `json:"vaf21"`
|
|
2421
|
+ Vaf22 string `json:"vaf22"`
|
|
2422
|
+ Vaf32 string `json:"vaf32"`
|
|
2423
|
+ Vaf35 string `json:"vaf35"`
|
|
2424
|
+ Vaf36 string `json:"vaf36"`
|
|
2425
|
+ Vaf58 string `json:"vaf58"`
|
|
2426
|
+ Vaf61 string `json:"vaf61"`
|
|
2427
|
+}
|