zky_mandate/internal/app/system/model/entity/tools_gen_table.go
2023-01-20 10:53:34 +08:00

32 lines
1.9 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 entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// ToolsGenTable is the golang structure for table tools_gen_table.
type ToolsGenTable struct {
TableId int64 `json:"tableId" description:"编号"`
TableName string `json:"tableName" description:"表名称"`
TableComment string `json:"tableComment" description:"表描述"`
ClassName string `json:"className" description:"实体类名称"`
TplCategory string `json:"tplCategory" description:"使用的模板crud单表操作 tree树表操作"`
PackageName string `json:"packageName" description:"生成包路径"`
ModuleName string `json:"moduleName" description:"生成模块名"`
BusinessName string `json:"businessName" description:"生成业务名"`
FunctionName string `json:"functionName" description:"生成功能名"`
FunctionAuthor string `json:"functionAuthor" description:"生成功能作者"`
Options string `json:"options" description:"其它生成选项"`
CreateTime *gtime.Time `json:"createTime" description:"创建时间"`
UpdateTime *gtime.Time `json:"updateTime" description:"更新时间"`
Remark string `json:"remark" description:"备注"`
Overwrite bool `json:"overwrite" description:"是否覆盖原有文件"`
SortColumn string `json:"sortColumn" description:"排序字段名"`
SortType string `json:"sortType" description:"排序方式 (asc顺序 desc倒序)"`
ShowDetail bool `json:"showDetail" description:"是否有查看详情功能"`
}