Files
web_ylsa/api_file/model/sysSettings.go
2025-07-11 16:54:11 +08:00

18 lines
293 B
Go

package model
import "gorm.io/gorm"
// SysIcons 系统图标库
type SysIcons struct {
Icon string `json:"icon"`
gorm.Model
}
type SysSettings struct {
Name string `json:"name"`
CnName string `json:"cn_name"`
Value string `json:"value"`
DType string `json:"d_type"`
gorm.Model
}