init
This commit is contained in:
39
internal/model/do/infra_codegen_table.go
Normal file
39
internal/model/do/infra_codegen_table.go
Normal file
@@ -0,0 +1,39 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// InfraCodegenTable is the golang structure of table infra_codegen_table for DAO operations like Where/Data.
|
||||
type InfraCodegenTable struct {
|
||||
g.Meta `orm:"table:infra_codegen_table, do:true"`
|
||||
Id interface{} // 编号
|
||||
DataSourceConfigId interface{} // 数据源配置的编号
|
||||
Scene interface{} // 生成场景
|
||||
TableName interface{} // 表名称
|
||||
TableComment interface{} // 表描述
|
||||
Remark interface{} // 备注
|
||||
ModuleName interface{} // 模块名
|
||||
BusinessName interface{} // 业务名
|
||||
ClassName interface{} // 类名称
|
||||
ClassComment interface{} // 类描述
|
||||
Author interface{} // 作者
|
||||
TemplateType interface{} // 模板类型
|
||||
FrontType interface{} // 前端类型
|
||||
ParentMenuId interface{} // 父菜单编号
|
||||
MasterTableId interface{} // 主表的编号
|
||||
SubJoinColumnId interface{} // 子表关联主表的字段编号
|
||||
SubJoinMany interface{} // 主表与子表是否一对多
|
||||
TreeParentColumnId interface{} // 树表的父字段编号
|
||||
TreeNameColumnId interface{} // 树表的名字字段编号
|
||||
Creator interface{} // 创建者
|
||||
CreateTime *gtime.Time // 创建时间
|
||||
Updater interface{} // 更新者
|
||||
UpdateTime *gtime.Time // 更新时间
|
||||
Deleted interface{} // 是否删除
|
||||
}
|
||||
Reference in New Issue
Block a user