vRp.CD2g_test/exporter/configuration/field.go

10 lines
138 B
Go

package configuration
// Field 配置字段
type Field interface {
GetID() int
GetName() string
GetType() FieldType
IsIndex() bool
}