|
@@ -215,20 +215,20 @@ func (PharmacyConfig) TableName() string {
|
215
|
215
|
}
|
216
|
216
|
|
217
|
217
|
type Pharmacy struct {
|
218
|
|
- ID int64 `gorm:"column:id" json:"id" form:"id"`
|
219
|
|
- UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
220
|
|
- PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
|
221
|
|
- HisPrescriptionId int64 `gorm:"column:his_prescription_id" json:"his_prescription_id" form:"his_prescription_id"`
|
222
|
|
- XtAdviceId int64 `gorm:"column:xt_advice_id" json:"xt_advice_id" form:"xt_advice_id"`
|
223
|
|
- HisOrXt int64 `gorm:"column:his_or_xt" json:"his_or_xt" form:"his_or_xt"`
|
224
|
|
- Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
|
225
|
|
- Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
|
226
|
|
- Status int64 `gorm:"column:status" json:"status" form:"status"`
|
227
|
|
- HisAdviceId int64 `gorm:"column:his_advice_id" json:"his_advice_id" form:"his_advice_id"`
|
228
|
|
- DrugId int64 `gorm:"column:drug_id" json:"drug_id" form:"drug_id"`
|
229
|
|
- RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
|
230
|
|
- OrdreNumber string `gorm:"column:ordre_number" json:"ordre_number" form:"ordre_number"`
|
231
|
|
- Creater int64 `gorm:"column:creater" json:"creater" form:"creater"`
|
|
218
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
219
|
+ UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
|
220
|
+ PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
|
|
221
|
+ HisAdviceInfoId int64 `gorm:"column:his_advice_info_id" json:"his_advice_info_id" form:"his_advice_info_id"`
|
|
222
|
+ XtAdviceId int64 `gorm:"column:xt_advice_id" json:"xt_advice_id" form:"xt_advice_id"`
|
|
223
|
+ HisOrXt int64 `gorm:"column:his_or_xt" json:"his_or_xt" form:"his_or_xt"`
|
|
224
|
+ Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
|
|
225
|
+ Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
|
|
226
|
+ Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
227
|
+ HisAdviceId int64 `gorm:"column:his_advice_id" json:"his_advice_id" form:"his_advice_id"`
|
|
228
|
+ DrugId int64 `gorm:"column:drug_id" json:"drug_id" form:"drug_id"`
|
|
229
|
+ RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
|
|
230
|
+ OrdreNumber string `gorm:"column:ordre_number" json:"ordre_number" form:"ordre_number"`
|
|
231
|
+ Creater int64 `gorm:"column:creater" json:"creater" form:"creater"`
|
232
|
232
|
}
|
233
|
233
|
|
234
|
234
|
func (Pharmacy) TableName() string {
|