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.

9 lines
361 B

package models
type TSsoConfig struct {
ConfigId string `xorm:"not null pk comment('配置ID') VARCHAR(50)"`
ConfigName string `xorm:"not null comment('配置名称') VARCHAR(128)"`
ConfigContent string `xorm:"default 'NULL' comment('配置内容') VARCHAR(128)"`
Imagebinary string `xorm:"default 'NULL' comment('图片信息') VARCHAR(128)"`
}