19 lines
489 B
Go
19 lines
489 B
Go
package models
|
|
|
|
type StepsResponse struct {
|
|
Result []Steps `json:"result"`
|
|
}
|
|
|
|
type Steps struct {
|
|
ID string `json:"ID"`
|
|
EntityID string `json:"ENTITY_ID"`
|
|
StatusID string `json:"STATUS_ID"`
|
|
Name string `json:"NAME"`
|
|
NameInit string `json:"NAME_INIT,omitempty"`
|
|
Sort string `json:"SORT"`
|
|
System string `json:"SYSTEM"`
|
|
Color string `json:"COLOR,omitempty"`
|
|
Semantics string `json:"SEMANTICS,omitempty"`
|
|
CategoryID string `json:"CATEGORY_ID"`
|
|
}
|