field.go
413 字节
package domain
// Field 字段
type Field struct {
// 字段Id
FieldId int `json:"fieldId"`
// 索引序号
Index int `json:"index"`
// 名称
Name string `json:"name"`
// 对应数据库名称
SQLName string `json:"sqlName"`
// 对应数据库类型
SQLType string `json:"sqlType"`
// 描述
Description string `json:"description"`
// 标识 1:主表字段 2:手动添加
Flag int `json:"flag"`
}