diff --git a/src/model/aliyun_sms_notice.go b/src/model/aliyun_sms_notice.go index d7e98cc..2ed421e 100644 --- a/src/model/aliyun_sms_notice.go +++ b/src/model/aliyun_sms_notice.go @@ -14,4 +14,5 @@ type AliyunSmsNotice struct { Day int `json:"day" xorm:"comment('部分通知需要时间') INT(11)"` Type string `json:"type" xorm:"VARCHAR(255)"` NoticeDay int `json:"notice_day" xorm:"default 0 comment('部分通知需要时间 隔X小时通知') INT(11)"` + IsShow int `json:"is_show" xorm:"default 0 INT(1)"` } diff --git a/src/model/jpush_notice.go b/src/model/jpush_notice.go index 2757086..f0dde41 100644 --- a/src/model/jpush_notice.go +++ b/src/model/jpush_notice.go @@ -14,4 +14,5 @@ type JpushNotice struct { Day int `json:"day" xorm:"comment('部分通知需要时间 X小时') INT(11)"` Type string `json:"type" xorm:"VARCHAR(255)"` NoticeDay int `json:"notice_day" xorm:"default 0 comment('部分通知需要时间 隔X小时通知') INT(11)"` + IsShow int `json:"is_show" xorm:"default 0 INT(1)"` }