39 lines
1.8 KiB
Go
39 lines
1.8 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// InfraCodegenColumn is the golang structure of table infra_codegen_column for DAO operations like Where/Data.
|
|
type InfraCodegenColumn struct {
|
|
g.Meta `orm:"table:infra_codegen_column, do:true"`
|
|
Id interface{} // 编号
|
|
TableId interface{} // 表编号
|
|
ColumnName interface{} // 字段名
|
|
DataType interface{} // 字段类型
|
|
ColumnComment interface{} // 字段描述
|
|
Nullable interface{} // 是否允许为空
|
|
PrimaryKey interface{} // 是否主键
|
|
OrdinalPosition interface{} // 排序
|
|
JavaType interface{} // Java 属性类型
|
|
JavaField interface{} // Java 属性名
|
|
DictType interface{} // 字典类型
|
|
Example interface{} // 数据示例
|
|
CreateOperation interface{} // 是否为 Create 创建操作的字段
|
|
UpdateOperation interface{} // 是否为 Update 更新操作的字段
|
|
ListOperation interface{} // 是否为 List 查询操作的字段
|
|
ListOperationCondition interface{} // List 查询操作的条件类型
|
|
ListOperationResult interface{} // 是否为 List 查询操作的返回字段
|
|
HtmlType interface{} // 显示类型
|
|
Creator interface{} // 创建者
|
|
CreateTime *gtime.Time // 创建时间
|
|
Updater interface{} // 更新者
|
|
UpdateTime *gtime.Time // 更新时间
|
|
Deleted interface{} // 是否删除
|
|
}
|