37 lines
1.1 KiB
Go
37 lines
1.1 KiB
Go
package res
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type FishboneResponse struct {
|
|
ID uuid.UUID `json:"id"`
|
|
FishboneCode string `json:"fishbone_code"`
|
|
BackboneCode string `json:"backbone_code"`
|
|
DeviceStart string `json:"device_start"`
|
|
DeviceEnd string `json:"device_end"`
|
|
DeviceStartID uuid.UUID `json:"device_start_id"`
|
|
DeviceEndID uuid.UUID `json:"device_end_id"`
|
|
CoreAmount int `json:"core_amount"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
type FishboneDetailResponse struct {
|
|
ID uuid.UUID `json:"id"`
|
|
FishboneCode string `json:"fishbone_code"`
|
|
DeviceStartID uuid.UUID `json:"device_start_id"`
|
|
DeviceEndID uuid.UUID `json:"device_end_id"`
|
|
BackboneCode string `json:"backbone_code"`
|
|
CoreAmount int `json:"core_amount"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
type BackboneInfo struct {
|
|
ID uuid.UUID `json:"id"`
|
|
BackboneCode string `json:"backbone_code"`
|
|
}
|