package models import ( "time" ) type SysPermssion struct { Id int64 `xorm:"pk autoincr BIGINT(20)"` Uuid string `xorm:"not null pk VARCHAR(64)"` Parent string `xorm:"VARCHAR(64)"` Title string `xorm:"VARCHAR(100)"` Value string `xorm:"VARCHAR(100)"` Times time.Time `xorm:"default 'CURRENT_TIMESTAMP' TIMESTAMP"` }