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"` 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"` Backbone BackboneInfo `json:"backbone"` 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"` }