You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
508 B
16 lines
508 B
package modeluis
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type SysUser struct {
|
|
Id int64 `xorm:"pk autoincr BIGINT(20)"`
|
|
Xid 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"`
|
|
}
|