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