You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.1 KiB
23 lines
1.1 KiB
// ================================================================================= |
|
// Code generated by GoFrame CLI tool. DO NOT EDIT. |
|
// ================================================================================= |
|
|
|
package entity |
|
|
|
import ( |
|
"github.com/gogf/gf/v2/os/gtime" |
|
) |
|
|
|
// SysConfig is the golang structure for table sys_config. |
|
type SysConfig struct { |
|
ConfigId uint `json:"configId" description:"参数主键"` |
|
ConfigName string `json:"configName" description:"参数名称"` |
|
ConfigKey string `json:"configKey" description:"参数键名"` |
|
ConfigValue string `json:"configValue" description:"参数键值"` |
|
ConfigType int `json:"configType" description:"系统内置(Y是 N否)"` |
|
CreateBy uint `json:"createBy" description:"创建者"` |
|
UpdateBy uint `json:"updateBy" description:"更新者"` |
|
Remark string `json:"remark" description:"备注"` |
|
CreatedAt *gtime.Time `json:"createdAt" description:"创建时间"` |
|
UpdatedAt *gtime.Time `json:"updatedAt" description:"修改时间"` |
|
}
|
|
|