Ver código fonte

增加研究员列表筛选条件

kobe6258 4 meses atrás
pai
commit
1bbb7bdf22
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      models/sys/sys_config.go

+ 1 - 1
models/sys/sys_config.go

@@ -13,7 +13,7 @@ type SysConfig struct {
 	ConfigName  string    `gorm:"column:config_name" json:"config_name"`
 	ConfigType  string    `gorm:"column:config_type;type:enum('string','int','byte')" json:"config_type"`
 	Deleted     int       `gorm:"column:deleted" json:"deleted"`
-	StrValue    string    `gorm:"column:strValue" json:"str_value"`
+	StrValue    string    `gorm:"column:str_value" json:"str_value"`
 	IntValue    int       `gorm:"column:int_value" json:"int_value"`
 	ByteValue   string    `gorm:"column:byte_value" json:"byte_value"`
 	CreatedTime time.Time `gorm:"column:created_time" json:"created_time"`