Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Schema ¶
type Schema struct { Name string // 数据表名称 Model any // 数据模型 ModelType reflect.Type // 数据模型类型 Columns []column.Column // 数据表的字段列表 ColumnNames []any // 数据表的字段名列表 InsertableNames []any // 可插入字段名 // contains filtered or unexported fields }
Schema 定义数据表的数据结构
func (*Schema) ExtractValues ¶
ExtractValues 从数据模型中提取数据
type TableNameGetter ¶
type TableNameGetter interface {
GetTableName() string
}
Click to show internal directories.
Click to hide internal directories.