ソースを参照

阿里云短信

master
huangjiajun 6時間前
コミット
90380298ab
2個のファイルの変更7行の追加5行の削除
  1. +4
    -3
      src/model/aliyun_sms_record.go
  2. +3
    -2
      src/model/jpush_record.go

+ 4
- 3
src/model/aliyun_sms_record.go ファイルの表示

@@ -9,15 +9,16 @@ type AliyunSmsRecord struct {
Platform string `json:"platform" xorm:"VARCHAR(255)"`
Target string `json:"target" xorm:"VARCHAR(255)"`
UserId string `json:"user_id" xorm:"TEXT"`
Phone string `json:"phone" xorm:"TEXT"`
Level int `json:"level" xorm:"default 0 INT(11)"`
Title string `json:"title" xorm:"VARCHAR(255)"`
Content string `json:"content" xorm:"VARCHAR(255)"`
Skip string `json:"skip" xorm:"TEXT"`
SendType int `json:"send_type" xorm:"default 0 INT(1)"`
State int `json:"state" xorm:"default 0 INT(1)"`
SendType int `json:"send_type" xorm:"default 0 comment('0马上 1定时') INT(1)"`
SendStartTime time.Time `json:"send_start_time" xorm:"DATETIME"`
SendEndTime time.Time `json:"send_end_time" xorm:"DATETIME"`
CreateAt time.Time `json:"create_at" xorm:"DATETIME"`
UpdateAt time.Time `json:"update_at" xorm:"DATETIME"`
State int `json:"state" xorm:"default 0 INT(1)"`
Phone string `json:"phone" xorm:"TEXT"`
IsRun int `json:"is_run" xorm:"default 0 INT(1)"`
}

+ 3
- 2
src/model/jpush_record.go ファイルの表示

@@ -13,10 +13,11 @@ type JpushRecord struct {
Title string `json:"title" xorm:"VARCHAR(255)"`
Content string `json:"content" xorm:"VARCHAR(255)"`
Skip string `json:"skip" xorm:"TEXT"`
SendType int `json:"send_type" xorm:"default 0 INT(1)"`
State int `json:"state" xorm:"default 0 INT(1)"`
SendType int `json:"send_type" xorm:"default 0 comment('0马上 1定时') INT(1)"`
SendStartTime time.Time `json:"send_start_time" xorm:"DATETIME"`
SendEndTime time.Time `json:"send_end_time" xorm:"DATETIME"`
CreateAt time.Time `json:"create_at" xorm:"DATETIME"`
UpdateAt time.Time `json:"update_at" xorm:"DATETIME"`
State int `json:"state" xorm:"default 0 INT(1)"`
IsRun int `json:"is_run" xorm:"default 0 INT(1)"`
}

読み込み中…
キャンセル
保存