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.
10 lines
388 B
10 lines
388 B
2 months ago
|
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"`
|
||
|
}
|