浏览代码

短信 推送模板

master
huangjiajun 13 小时前
父节点
当前提交
467e6011aa
共有 2 个文件被更改,包括 18 次插入16 次删除
  1. +9
    -8
      src/model/aliyun_sms_notice.go
  2. +9
    -8
      src/model/jpush_notice.go

+ 9
- 8
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)"`
}

+ 9
- 8
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)"`
}

正在加载...
取消
保存