forked from lxh/go-wxhelper
20 lines
462 B
Go
20 lines
462 B
Go
package entity
|
|
|
|
import "wechat-robot/pkg/types"
|
|
|
|
// SystemConfig
|
|
// @description: 系统配置
|
|
type SystemConfig struct {
|
|
types.BaseDbModelWithReal
|
|
Code string `json:"code" gorm:"type:varchar(255);not null;comment:'配置编码'"`
|
|
Content string `json:"content" gorm:"type:text;comment:'配置内容'"`
|
|
}
|
|
|
|
// TableName
|
|
// @description: 表名
|
|
// @receiver SystemConfig
|
|
// @return string
|
|
func (SystemConfig) TableName() string {
|
|
return "t_system_config"
|
|
}
|