初始化项目文件
This commit is contained in:
17
api_file/model/sysSettings.go
Normal file
17
api_file/model/sysSettings.go
Normal file
@ -0,0 +1,17 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user