2024-09-22 12:12:17 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
type StepsResponse struct {
|
|
|
|
Result []Steps `json:"result"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Steps struct {
|
2024-09-26 14:31:13 +00:00
|
|
|
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"`
|
2024-09-22 12:12:17 +00:00
|
|
|
}
|