Quellcode durchsuchen

通知模板

master
huangjiajun vor 1 Woche
Ursprung
Commit
9e411a1a86
1 geänderte Dateien mit 6 neuen und 10 gelöschten Zeilen
  1. +6
    -10
      src/model/user_notice_time.go

+ 6
- 10
src/model/user_notice_time.go Datei anzeigen

@@ -1,14 +1,10 @@
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"`
LoginTime time.Time `json:"login_time" xorm:"DATETIME"`
SignTime time.Time `json:"sign_time" xorm:"DATETIME"`
Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
Uid int `json:"uid" xorm:"default 0 INT(11)"`
LoginNoticeTime int `json:"login_notice_time" xorm:"default 0 INT(11)"`
SignNoticeTime int `json:"sign_notice_time" xorm:"default 0 INT(11)"`
LoginTime int `json:"login_time" xorm:"default 0 INT(11)"`
SignTime int `json:"sign_time" xorm:"default 0 INT(11)"`
}

Laden…
Abbrechen
Speichern