package models type BotServiceSetting struct { HeaderPhoto string `xorm:"comment('头像图片') VARCHAR(255)"` Id int `xorm:"not null pk autoincr INT"` ServerLink string `xorm:"comment('内容') VARCHAR(255)"` ServerName string `xorm:"comment('客服名称') VARCHAR(255)"` Type int `xorm:"not null default 1 comment('1:邮箱 2:跳转地址') TINYINT"` }