GAAS 广汽安道拓GFrame金属件MOM项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
324 B

  1. package grmi
  2. type Entity struct {
  3. TableName string
  4. BuildCursor func() interface{}
  5. Indicator interface{}
  6. FieldMapping map[string]Field
  7. }
  8. func NewEntity(tableName string, buildCursor func() interface{}, fieldMapping map[string]Field) Entity {
  9. return Entity{tableName, buildCursor, buildCursor(), fieldMapping}
  10. }