|
@@ -1250,6 +1250,7 @@ type HisDoctorAdvice struct {
|
1250
|
1250
|
DrugNameId int64 `gorm:"column:drug_name_id" json:"drug_name_id" form:"drug_name_id"`
|
1251
|
1251
|
ExecutionFrequencyId int64 `gorm:"column:execution_frequency_id" json:"execution_frequency_id" form:"execution_frequency_id"`
|
1252
|
1252
|
IsMobile int64 `gorm:"column:is_mobile" json:"is_mobile" form:"is_mobile"`
|
|
1253
|
+ IsSelfDrug int64 `gorm:"column:is_self_drug" json:"is_self_drug" form:"is_self_drug"`
|
1253
|
1254
|
}
|
1254
|
1255
|
|
1255
|
1256
|
func (HisDoctorAdvice) TableName() string {
|
|
@@ -1330,6 +1331,7 @@ type HisDoctorAdviceThirty struct {
|
1330
|
1331
|
IsCheck int64 `gorm:"-" json:"is_check" form:"is_check"`
|
1331
|
1332
|
Way int64 `gorm:"column:way" json:"way" form:"way"`
|
1332
|
1333
|
IsSettle int64 `gorm:"column:is_settle" json:"is_settle" form:"is_settle"`
|
|
1334
|
+ IsSelfDrug int64 `gorm:"column:is_self_drug" json:"is_self_drug" form:"is_self_drug"`
|
1333
|
1335
|
}
|
1334
|
1336
|
|
1335
|
1337
|
func (HisDoctorAdviceThirty) TableName() string {
|
|
@@ -1435,6 +1437,7 @@ type HisDoctorAdviceFourty struct {
|
1435
|
1437
|
DrugId int64 `gorm:"column:drug_id" json:"drug_id" form:"drug_id"`
|
1436
|
1438
|
IsSettle int64 `gorm:"column:is_settle" json:"is_settle" form:"is_settle"`
|
1437
|
1439
|
Drug Drug `gorm:"ForeignKey:ID;AssociationForeignKey:DrugId" json:"drug"`
|
|
1440
|
+ IsSelfDrug int64 `gorm:"column:is_self_drug" json:"is_self_drug" form:"is_self_drug"`
|
1438
|
1441
|
}
|
1439
|
1442
|
|
1440
|
1443
|
func (HisDoctorAdviceFourty) TableName() string {
|
|
@@ -1581,6 +1584,7 @@ type HisNoDoctorAdvice struct {
|
1581
|
1584
|
AdviceDate int64 `gorm:"column:advice_date" json:"advice_date" form:"advice_date"`
|
1582
|
1585
|
AdviceType int64 `gorm:"column:advice_type" json:"advice_type" form:"advice_type"`
|
1583
|
1586
|
Count int64 `json:"count"`
|
|
1587
|
+ IsSelfDrug int64 `gorm:"column:is_self_drug" json:"is_self_drug" form:"is_self_drug"`
|
1584
|
1588
|
}
|
1585
|
1589
|
|
1586
|
1590
|
func (HisNoDoctorAdvice) TableName() string {
|