Explorar el Código

阿里云短信

master
huangjiajun hace 6 horas
padre
commit
90380298ab
Se han modificado 2 ficheros con 7 adiciones y 5 borrados
  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 Ver fichero

@@ -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 Ver fichero

@@ -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)"`
}

Cargando…
Cancelar
Guardar