From 467e6011aa2513e2b87205b19637c7351a2a7d49 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Wed, 27 Nov 2024 09:38:19 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9F=AD=E4=BF=A1=20=E6=8E=A8=E9=80=81?= =?UTF-8?q?=E6=A8=A1=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/model/aliyun_sms_notice.go | 17 +++++++++-------- src/model/jpush_notice.go | 17 +++++++++-------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/src/model/aliyun_sms_notice.go b/src/model/aliyun_sms_notice.go index 96189e4..d7e98cc 100644 --- a/src/model/aliyun_sms_notice.go +++ b/src/model/aliyun_sms_notice.go @@ -5,12 +5,13 @@ import ( ) type AliyunSmsNotice struct { - Id int `json:"id" xorm:"not null pk autoincr INT(11)"` - Title string `json:"title" xorm:"VARCHAR(255)"` - Content string `json:"content" xorm:"VARCHAR(255)"` - Skip string `json:"skip" xorm:"TEXT"` - CreateAt time.Time `json:"create_at" xorm:"DATETIME"` - UpdateAt time.Time `json:"update_at" xorm:"DATETIME"` - Day int `json:"day" xorm:"comment('部分通知需要时间') INT(11)"` - Type string `json:"type" xorm:"VARCHAR(255)"` + Id int `json:"id" xorm:"not null pk autoincr INT(11)"` + Title string `json:"title" xorm:"VARCHAR(255)"` + Content string `json:"content" xorm:"VARCHAR(255)"` + Skip string `json:"skip" xorm:"TEXT"` + CreateAt time.Time `json:"create_at" xorm:"DATETIME"` + UpdateAt time.Time `json:"update_at" xorm:"DATETIME"` + 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)"` } diff --git a/src/model/jpush_notice.go b/src/model/jpush_notice.go index 63088f1..2757086 100644 --- a/src/model/jpush_notice.go +++ b/src/model/jpush_notice.go @@ -5,12 +5,13 @@ import ( ) type JpushNotice struct { - Id int `json:"id" xorm:"not null pk autoincr INT(11)"` - Title string `json:"title" xorm:"VARCHAR(255)"` - Content string `json:"content" xorm:"VARCHAR(255)"` - Skip string `json:"skip" xorm:"TEXT"` - CreateAt time.Time `json:"create_at" xorm:"DATETIME"` - UpdateAt time.Time `json:"update_at" xorm:"DATETIME"` - Day int `json:"day" xorm:"comment('部分通知需要时间') INT(11)"` - Type string `json:"type" xorm:"VARCHAR(255)"` + Id int `json:"id" xorm:"not null pk autoincr INT(11)"` + Title string `json:"title" xorm:"VARCHAR(255)"` + Content string `json:"content" xorm:"VARCHAR(255)"` + Skip string `json:"skip" xorm:"TEXT"` + CreateAt time.Time `json:"create_at" xorm:"DATETIME"` + UpdateAt time.Time `json:"update_at" xorm:"DATETIME"` + 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)"` }