37 lines
4.1 KiB
Go
37 lines
4.1 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// InfraCodegenColumn is the golang structure for table infra_codegen_column.
|
|
type InfraCodegenColumn struct {
|
|
Id int64 `json:"id" orm:"id" description:"编号"` // 编号
|
|
TableId int64 `json:"tableId" orm:"table_id" description:"表编号"` // 表编号
|
|
ColumnName string `json:"columnName" orm:"column_name" description:"字段名"` // 字段名
|
|
DataType string `json:"dataType" orm:"data_type" description:"字段类型"` // 字段类型
|
|
ColumnComment string `json:"columnComment" orm:"column_comment" description:"字段描述"` // 字段描述
|
|
Nullable bool `json:"nullable" orm:"nullable" description:"是否允许为空"` // 是否允许为空
|
|
PrimaryKey bool `json:"primaryKey" orm:"primary_key" description:"是否主键"` // 是否主键
|
|
OrdinalPosition int `json:"ordinalPosition" orm:"ordinal_position" description:"排序"` // 排序
|
|
JavaType string `json:"javaType" orm:"java_type" description:"Java 属性类型"` // Java 属性类型
|
|
JavaField string `json:"javaField" orm:"java_field" description:"Java 属性名"` // Java 属性名
|
|
DictType string `json:"dictType" orm:"dict_type" description:"字典类型"` // 字典类型
|
|
Example string `json:"example" orm:"example" description:"数据示例"` // 数据示例
|
|
CreateOperation bool `json:"createOperation" orm:"create_operation" description:"是否为 Create 创建操作的字段"` // 是否为 Create 创建操作的字段
|
|
UpdateOperation bool `json:"updateOperation" orm:"update_operation" description:"是否为 Update 更新操作的字段"` // 是否为 Update 更新操作的字段
|
|
ListOperation bool `json:"listOperation" orm:"list_operation" description:"是否为 List 查询操作的字段"` // 是否为 List 查询操作的字段
|
|
ListOperationCondition string `json:"listOperationCondition" orm:"list_operation_condition" description:"List 查询操作的条件类型"` // List 查询操作的条件类型
|
|
ListOperationResult bool `json:"listOperationResult" orm:"list_operation_result" description:"是否为 List 查询操作的返回字段"` // 是否为 List 查询操作的返回字段
|
|
HtmlType string `json:"htmlType" orm:"html_type" 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:"是否删除"` // 是否删除
|
|
}
|