123456789101112131415161718192021222324252627282930 |
- package models
- import (
- "go-admin/common/models"
- )
- type SysConfig struct {
- models.Model
- ConfigName string `json:"configName" gorm:"size:128;comment:ConfigName"` //
- ConfigKey string `json:"configKey" gorm:"size:128;comment:ConfigKey"` //
- ConfigValue string `json:"configValue" gorm:"size:255;comment:ConfigValue"` //
- ConfigType string `json:"configType" gorm:"size:64;comment:ConfigType"`
- IsFrontend string `json:"isFrontend" gorm:"size:64;comment:是否前台"` //
- Remark string `json:"remark" gorm:"size:128;comment:Remark"` //
- models.ControlBy
- models.ModelTime
- }
- func (SysConfig) TableName() string {
- return "sys_config"
- }
- func (e *SysConfig) Generate() models.ActiveRecord {
- o := *e
- return &o
- }
- func (e *SysConfig) GetId() interface{} {
- return e.Id
- }
|