Files
admin-go/internal/app/system/dao/internal/tools_gen_table_column.go
2026-03-18 10:19:42 +08:00

152 lines
6.3 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 internal
import (
"context"
"github.com/gogf/gf/v2/database/gdb"
"github.com/gogf/gf/v2/frame/g"
)
// ToolsGenTableColumnDao is the data access object for table tools_gen_table_column.
type ToolsGenTableColumnDao struct {
table string // table is the underlying table name of the DAO.
group string // group is the database configuration group name of current DAO.
columns ToolsGenTableColumnColumns // columns contains all the column names of Table for convenient usage.
}
// ToolsGenTableColumnColumns defines and stores column names for table tools_gen_table_column.
type ToolsGenTableColumnColumns struct {
ColumnId string // 编号
TableId string // 归属表编号
ColumnName string // 列名称
ColumnComment string // 列描述
ColumnType string // 列类型
GoType string // Go类型
TsType string // TS类型
GoField string // Go字段名
HtmlField string // html字段名
IsPk string // 是否主键1是
IsIncrement string // 是否自增1是
IsRequired string // 是否必填1是
IsInsert string // 是否为插入字段1是
IsEdit string // 是否编辑字段1是
IsList string // 是否列表字段1是
IsDetail string // 是否详情字段
IsQuery string // 是否查询字段1是
SortOrderEdit string // 插入编辑显示顺序
SortOrderList string // 列表显示顺序
SortOrderDetail string // 详情显示顺序
SortOrderQuery string // 查询显示顺序
QueryType string // 查询方式(等于、不等于、大于、小于、范围)
HtmlType string // 显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)
DictType string // 字典类型
LinkTableName string // 关联表名
LinkTableClass string // 关联表类名
LinkTableModuleName string // 关联表模块名
LinkTableBusinessName string // 关联表业务名
LinkTablePackage string // 关联表包名
LinkLabelId string // 关联表键名
LinkLabelName string // 关联表字段值
ColSpan string // 详情页占列数
RowSpan string // 详情页占行数
IsRowStart string // 详情页为行首
MinWidth string // 表格最小宽度
IsFixed string // 是否表格列左固定
IsOverflowTooltip string // 是否过长自动隐藏
IsCascade string // 是否级联查询
ParentColumnName string // 上级字段名
CascadeColumnName string // 级联查询字段
}
// toolsGenTableColumnColumns holds the columns for table tools_gen_table_column.
var toolsGenTableColumnColumns = ToolsGenTableColumnColumns{
ColumnId: "column_id",
TableId: "table_id",
ColumnName: "column_name",
ColumnComment: "column_comment",
ColumnType: "column_type",
GoType: "go_type",
TsType: "ts_type",
GoField: "go_field",
HtmlField: "html_field",
IsPk: "is_pk",
IsIncrement: "is_increment",
IsRequired: "is_required",
IsInsert: "is_insert",
IsEdit: "is_edit",
IsList: "is_list",
IsDetail: "is_detail",
IsQuery: "is_query",
SortOrderEdit: "sort_order_edit",
SortOrderList: "sort_order_list",
SortOrderDetail: "sort_order_detail",
SortOrderQuery: "sort_order_query",
QueryType: "query_type",
HtmlType: "html_type",
DictType: "dict_type",
LinkTableName: "link_table_name",
LinkTableClass: "link_table_class",
LinkTableModuleName: "link_table_module_name",
LinkTableBusinessName: "link_table_business_name",
LinkTablePackage: "link_table_package",
LinkLabelId: "link_label_id",
LinkLabelName: "link_label_name",
ColSpan: "col_span",
RowSpan: "row_span",
IsRowStart: "is_row_start",
MinWidth: "min_width",
IsFixed: "is_fixed",
IsOverflowTooltip: "is_overflow_tooltip",
IsCascade: "is_cascade",
ParentColumnName: "parent_column_name",
CascadeColumnName: "cascade_column_name",
}
// NewToolsGenTableColumnDao creates and returns a new DAO object for table data access.
func NewToolsGenTableColumnDao() *ToolsGenTableColumnDao {
return &ToolsGenTableColumnDao{
group: "default",
table: "tools_gen_table_column",
columns: toolsGenTableColumnColumns,
}
}
// DB retrieves and returns the underlying raw database management object of current DAO.
func (dao *ToolsGenTableColumnDao) DB() gdb.DB {
return g.DB(dao.group)
}
// Table returns the table name of current dao.
func (dao *ToolsGenTableColumnDao) Table() string {
return dao.table
}
// Columns returns all column names of current dao.
func (dao *ToolsGenTableColumnDao) Columns() ToolsGenTableColumnColumns {
return dao.columns
}
// Group returns the configuration group name of database of current dao.
func (dao *ToolsGenTableColumnDao) Group() string {
return dao.group
}
// Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation.
func (dao *ToolsGenTableColumnDao) Ctx(ctx context.Context) *gdb.Model {
return dao.DB().Model(dao.table).Safe().Ctx(ctx)
}
// Transaction wraps the transaction logic using function f.
// It rollbacks the transaction and returns the error from function f if it returns non-nil error.
// It commits the transaction and returns nil if function f returns nil.
//
// Note that, you should not Commit or Rollback the transaction in function f
// as it is automatically handled by this function.
func (dao *ToolsGenTableColumnDao) Transaction(ctx context.Context, f func(ctx context.Context, tx gdb.TX) error) (err error) {
return dao.Ctx(ctx).Transaction(ctx, f)
}