This commit is contained in:
孟帅
2025-10-25 00:35:30 +08:00
parent 5ebc33f28b
commit 7313d22cdb
168 changed files with 2349 additions and 1455 deletions

View File

@@ -13,18 +13,18 @@ import (
// SysGenCodes is the golang structure of table hg_sys_gen_codes for DAO operations like Where/Data.
type SysGenCodes struct {
g.Meta `orm:"table:hg_sys_gen_codes, do:true"`
Id interface{} // 生成ID
GenType interface{} // 生成类型
GenTemplate interface{} // 生成模板
VarName interface{} // 实体命名
Id any // 生成ID
GenType any // 生成类型
GenTemplate any // 生成模板
VarName any // 实体命名
Options *gjson.Json // 配置选项
DbName interface{} // 数据库名称
TableName interface{} // 主表名称
TableComment interface{} // 主表注释
DaoName interface{} // 主表dao模型
DbName any // 数据库名称
TableName any // 主表名称
TableComment any // 主表注释
DaoName any // 主表dao模型
MasterColumns *gjson.Json // 主表字段
AddonName interface{} // 插件名称
Status interface{} // 生成状态
AddonName any // 插件名称
Status any // 生成状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}