Browse Source

短信 推送模板

master
huangjiajun 7 hours ago
parent
commit
8dabaaaec3
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      src/model/user_notice_time.go

+ 12
- 0
src/model/user_notice_time.go View File

@@ -0,0 +1,12 @@
package model

import (
"time"
)

type UserNoticeTime struct {
Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
Uid int `json:"uid" xorm:"default 0 INT(11)"`
LoginNoticeTime time.Time `json:"login_notice_time" xorm:"DATETIME"`
SignNoticeTime time.Time `json:"sign_notice_time" xorm:"DATETIME"`
}

Loading…
Cancel
Save