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