common.go 433 B

1234567891011121314
  1. package common
  2. type Values struct {
  3. Value interface{} `json:"value,omitempty"`
  4. EnumID int `json:"enum_id,omitempty"`
  5. Enum string `json:"enum,omitempty"`
  6. }
  7. type CustomFieldsValue struct {
  8. FieldID int `json:"field_id"`
  9. FieldName string `json:"field_name,omitempty"`
  10. FieldCode string `json:"field_code,omitempty"`
  11. FieldType string `json:"field_type,omitempty"`
  12. Values []Values `json:"values"`
  13. }