package models import ( "time" ) type SysParam struct { Id int64 `xorm:"pk autoincr BIGINT(20)"` Uuid string `xorm:"not null pk VARCHAR(64)"` Name string `xorm:"not null pk comment('key') VARCHAR(50)"` Title string `xorm:"comment('名称') VARCHAR(100)"` Value []byte `xorm:"BLOB"` Times time.Time `xorm:"default 'CURRENT_TIMESTAMP' TIMESTAMP"` }