面包店
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 9 Monaten
123456789101112
  1. package model
  2. import (
  3. "time"
  4. )
  5. type AdmLog struct {
  6. Id int64 `json:"id" xorm:"pk autoincr BIGINT(20)"`
  7. AdmId int `json:"adm_id" xorm:"not null default 0 comment('管理员ID') INT(11)"`
  8. Ip string `json:"ip" xorm:"not null default '' comment('IP') VARCHAR(15)"`
  9. CreateAt time.Time `json:"create_at" xorm:"not null default CURRENT_TIMESTAMP comment('登陆时间') TIMESTAMP"`
  10. }