소스 검색

增加研究员列表筛选条件

kobe6258 4 달 전
부모
커밋
1bbb7bdf22
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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"`