|
@@ -53,3 +53,68 @@ type InspectResult struct {
|
53
|
53
|
intFlag int `json:"intFlag"`
|
54
|
54
|
ListResult GPReportListResultData
|
55
|
55
|
}
|
|
56
|
+
|
|
57
|
+type DataPrintCode struct {
|
|
58
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
59
|
+ HisUserId string `gorm:"column:his_user_id" json:"his_user_id" form:"his_user_id"`
|
|
60
|
+ Name string `gorm:"column:name" json:"name" form:"name"`
|
|
61
|
+ RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
|
|
62
|
+ ProjectName string `gorm:"column:project_name" json:"project_name" form:"project_name"`
|
|
63
|
+ Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
|
|
64
|
+ Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
|
|
65
|
+ Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
66
|
+ PrintId int64 `gorm:"column:print_id" json:"print_id" form:"print_id"`
|
|
67
|
+ PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
|
|
68
|
+}
|
|
69
|
+
|
|
70
|
+func (DataPrintCode) TableName() string {
|
|
71
|
+ return "print_code"
|
|
72
|
+}
|
|
73
|
+
|
|
74
|
+type XtHisLabelPrintStatusInfo struct {
|
|
75
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
76
|
+ PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
|
|
77
|
+ Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
|
|
78
|
+ Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
|
|
79
|
+ Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
80
|
+ IsCombinationPrint int64 `gorm:"column:is_combination_print" json:"is_combination_print" form:"is_combination_print"`
|
|
81
|
+ RecordDate string `gorm:"column:record_date" json:"record_date" form:"record_date"`
|
|
82
|
+ ItemIds string `gorm:"column:item_ids" json:"item_ids" form:"item_ids"`
|
|
83
|
+ UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
|
84
|
+ ProjectIds string `gorm:"column:project_ids" json:"project_ids" form:"project_ids"`
|
|
85
|
+ DoctorId int64 `gorm:"column:doctor_id" json:"doctor_id" form:"doctor_id"`
|
|
86
|
+ Ids string `gorm:"column:ids" json:"ids" form:"ids"`
|
|
87
|
+ IsTeam int64 `gorm:"column:is_team" json:"is_team" form:"is_team"`
|
|
88
|
+ IsPrint int64 `gorm:"column:is_print" json:"is_print" form:"is_print"`
|
|
89
|
+ ApplyCode string `gorm:"column:apply_code" json:"apply_code" form:"apply_code"`
|
|
90
|
+}
|
|
91
|
+
|
|
92
|
+func (XtHisLabelPrintStatusInfo) TableName() string {
|
|
93
|
+ return "his_label_print_status_info"
|
|
94
|
+}
|
|
95
|
+
|
|
96
|
+type HisLabelPrintInfo struct {
|
|
97
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
98
|
+ PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
|
|
99
|
+ Number string `gorm:"column:number" json:"number" form:"number"`
|
|
100
|
+ Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
|
|
101
|
+ Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
|
|
102
|
+ DoctorId int64 `gorm:"column:doctor_id" json:"doctor_id" form:"doctor_id"`
|
|
103
|
+ Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
104
|
+ ProjectName string `gorm:"column:project_name" json:"project_name" form:"project_name"`
|
|
105
|
+ ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
|
|
106
|
+ IsPrint int64 `gorm:"column:is_print" json:"is_print" form:"is_print"`
|
|
107
|
+ RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
|
|
108
|
+ ItemId int64 `gorm:"column:item_id" json:"item_id" form:"item_id"`
|
|
109
|
+ PProjectId int64 `gorm:"column:p_project_id" json:"p_project_id" form:"p_project_id"`
|
|
110
|
+ UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
|
111
|
+ DoctorName string `gorm:"column:doctor_name" json:"doctor_name" form:"doctor_name"`
|
|
112
|
+ PatientName string `gorm:"column:patient_name" json:"patient_name" form:"patient_name"`
|
|
113
|
+ FeedetlSn string `gorm:"column:feedetl_sn" json:"feedetl_sn" form:"feedetl_sn"`
|
|
114
|
+ PrescriptionId int64 `gorm:"column:prescription_id" json:"prescription_id" form:"prescription_id"`
|
|
115
|
+ ApplyCode string `gorm:"column:apply_code" json:"apply_code" form:"apply_code"`
|
|
116
|
+}
|
|
117
|
+
|
|
118
|
+func (HisLabelPrintInfo) TableName() string {
|
|
119
|
+ return "his_label_print_info"
|
|
120
|
+}
|