Files
jiacrontab/models/setting.go
jiazhizhong 1279635d7f fix
2022-03-10 17:09:03 +08:00

14 lines
298 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package models
import (
"encoding/json"
"gorm.io/gorm"
)
type SysSetting struct {
gorm.Model
Class int `json:"class"` // 设置分类1 Ldap配置
Content json.RawMessage `json:"content" gorm:"column:content; type:json"` // 配置内容
}