25 lines
646 B
Go
25 lines
646 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"`
|
||
|
Extra Extra `json:"EXTRA,omitempty"`
|
||
|
}
|
||
|
|
||
|
type Extra struct {
|
||
|
Semantics string `json:"SEMANTICS,omitempty"`
|
||
|
Color string `json:"COLOR,omitempty"`
|
||
|
}
|