mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-20 13:31:56 +00:00
19 lines
670 B
Go
19 lines
670 B
Go
package dto
|
|
|
|
// ExpeditionCostItemDTO merepresentasikan biaya ekspedisi per vendor.
|
|
type ExpeditionCostItemDTO struct {
|
|
Id uint64 `json:"id"`
|
|
ExpeditionVendorID uint64 `json:"expedition_vendor_id"`
|
|
ExpeditionVendorName string `json:"expedition_vendor_name"`
|
|
Qty float64 `json:"qty"`
|
|
UnitPrice float64 `json:"unit_price"`
|
|
HPPAmount float64 `json:"hpp_amount"`
|
|
}
|
|
|
|
// ExpeditionHPPDTO adalah struktur response utama untuk HPP Ekspedisi.
|
|
type ExpeditionHPPDTO struct {
|
|
ExpeditionCosts []ExpeditionCostItemDTO `json:"expedition_costs"`
|
|
TotalHPPAmount float64 `json:"total_hpp_amount"`
|
|
}
|
|
|