23 lines
454 B
Go
23 lines
454 B
Go
package structs
|
|
|
|
import "time"
|
|
|
|
type Equipment struct {
|
|
Id string // stock item id of invex system
|
|
Name string
|
|
Thumbnail string // url provided by invex system
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|
|
|
|
type EquipmentDocumentation struct {
|
|
Id string // stock item id of invex system
|
|
Content string
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|
|
|
|
type ApiEquipmentParamsRequest struct {
|
|
StockItemId string `json:"stockItemId"`
|
|
}
|