zky_mandate/internal/app/system/model/do/tools_gen_table.go
2023-04-22 14:54:21 +08:00

35 lines
1.4 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// ToolsGenTable is the golang structure of table tools_gen_table for DAO operations like Where/Data.
type ToolsGenTable struct {
g.Meta `orm:"table:tools_gen_table, do:true"`
TableId interface{} // 编号
TableName interface{} // 表名称
TableComment interface{} // 表描述
ClassName interface{} // 实体类名称
TplCategory interface{} // 使用的模板crud单表操作 tree树表操作
PackageName interface{} // 生成包路径
ModuleName interface{} // 生成模块名
BusinessName interface{} // 生成业务名
FunctionName interface{} // 生成功能名
FunctionAuthor interface{} // 生成功能作者
Options interface{} // 其它生成选项
CreateTime *gtime.Time // 创建时间
UpdateTime *gtime.Time // 更新时间
Remark interface{} // 备注
Overwrite interface{} // 是否覆盖原有文件
SortColumn interface{} // 排序字段名
SortType interface{} // 排序方式 (asc顺序 desc倒序)
ShowDetail interface{} // 是否有查看详情功能
ExcelPort interface{} // 是否有导入导出excel功能
}