package modeluis import ( "time" ) type SysUser struct { Id int64 `xorm:"pk autoincr BIGINT(20)"` Uuid string `xorm:"not null pk VARCHAR(64)"` Name string `xorm:"not null pk VARCHAR(50)"` Nick string `xorm:"VARCHAR(100)"` Phone string `xorm:"comment('备用电话') VARCHAR(50)"` Times time.Time `xorm:"comment('创建时间') TIMESTAMP"` Logintm time.Time `xorm:"comment('登陆时间') TIMESTAMP"` Fwtm time.Time `xorm:"comment('访问时间') TIMESTAMP"` }