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
388 B
9 lines
388 B
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"`
|
|
}
|
|
|