tools_gen_table.go 1.7 KB

123456789101112131415161718192021222324252627
  1. // =================================================================================
  2. // Code generated by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package model
  5. import (
  6. "github.com/gogf/gf/os/gtime"
  7. )
  8. // ToolsGenTable is the golang structure for table tools_gen_table.
  9. type ToolsGenTable struct {
  10. TableId int64 `orm:"table_id,primary" json:"tableId"` // 编号
  11. TableName string `orm:"table_name" json:"tableName"` // 表名称
  12. TableComment string `orm:"table_comment" json:"tableComment"` // 表描述
  13. ClassName string `orm:"class_name" json:"className"` // 实体类名称
  14. TplCategory string `orm:"tpl_category" json:"tplCategory"` // 使用的模板(crud单表操作 tree树表操作)
  15. PackageName string `orm:"package_name" json:"packageName"` // 生成包路径
  16. ModuleName string `orm:"module_name" json:"moduleName"` // 生成模块名
  17. BusinessName string `orm:"business_name" json:"businessName"` // 生成业务名
  18. FunctionName string `orm:"function_name" json:"functionName"` // 生成功能名
  19. FunctionAuthor string `orm:"function_author" json:"functionAuthor"` // 生成功能作者
  20. Options string `orm:"options" json:"options"` // 其它生成选项
  21. CreateTime *gtime.Time `orm:"create_time" json:"createTime"` // 创建时间
  22. UpdateTime *gtime.Time `orm:"update_time" json:"updateTime"` // 更新时间
  23. Remark string `orm:"remark" json:"remark"` // 备注
  24. }