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.
 
 
 

14 lines
377 B

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"`
}