Files
epic-go/internal/model/entity/infra_codegen_table.go
hu xiaotong 85e3a6540b init
2025-06-20 17:17:02 +08:00

38 lines
3.7 KiB
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// InfraCodegenTable is the golang structure for table infra_codegen_table.
type InfraCodegenTable struct {
Id int64 `json:"id" orm:"id" description:"编号"` // 编号
DataSourceConfigId int64 `json:"dataSourceConfigId" orm:"data_source_config_id" description:"数据源配置的编号"` // 数据源配置的编号
Scene int `json:"scene" orm:"scene" description:"生成场景"` // 生成场景
TableName string `json:"tableName" orm:"table_name" description:"表名称"` // 表名称
TableComment string `json:"tableComment" orm:"table_comment" description:"表描述"` // 表描述
Remark string `json:"remark" orm:"remark" description:"备注"` // 备注
ModuleName string `json:"moduleName" orm:"module_name" description:"模块名"` // 模块名
BusinessName string `json:"businessName" orm:"business_name" description:"业务名"` // 业务名
ClassName string `json:"className" orm:"class_name" description:"类名称"` // 类名称
ClassComment string `json:"classComment" orm:"class_comment" description:"类描述"` // 类描述
Author string `json:"author" orm:"author" description:"作者"` // 作者
TemplateType int `json:"templateType" orm:"template_type" description:"模板类型"` // 模板类型
FrontType int `json:"frontType" orm:"front_type" description:"前端类型"` // 前端类型
ParentMenuId int64 `json:"parentMenuId" orm:"parent_menu_id" description:"父菜单编号"` // 父菜单编号
MasterTableId int64 `json:"masterTableId" orm:"master_table_id" description:"主表的编号"` // 主表的编号
SubJoinColumnId int64 `json:"subJoinColumnId" orm:"sub_join_column_id" description:"子表关联主表的字段编号"` // 子表关联主表的字段编号
SubJoinMany bool `json:"subJoinMany" orm:"sub_join_many" description:"主表与子表是否一对多"` // 主表与子表是否一对多
TreeParentColumnId int64 `json:"treeParentColumnId" orm:"tree_parent_column_id" description:"树表的父字段编号"` // 树表的父字段编号
TreeNameColumnId int64 `json:"treeNameColumnId" orm:"tree_name_column_id" description:"树表的名字字段编号"` // 树表的名字字段编号
Creator string `json:"creator" orm:"creator" description:"创建者"` // 创建者
CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:"创建时间"` // 创建时间
Updater string `json:"updater" orm:"updater" description:"更新者"` // 更新者
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:"更新时间"` // 更新时间
Deleted bool `json:"deleted" orm:"deleted" description:"是否删除"` // 是否删除
}