diff --git a/erp/shipment/gift.go b/erp/shipment/gift.go index 77ed943..c6b919a 100644 --- a/erp/shipment/gift.go +++ b/erp/shipment/gift.go @@ -2,9 +2,10 @@ package shipment import ( "context" + "time" + "git.kumo.work/shama/service/client" "github.com/shopspring/decimal" - "time" ) type gift struct { @@ -36,6 +37,7 @@ type GiftItem struct { TaxExemption string `json:"taxExemption"` ContainerNumber string `json:"containerNumber"` SealNumber string `json:"sealNumber"` + Brand string `json:"brand"` Remark string `json:"remark"` Sort int64 `json:"sort"` IsSerial int64 `json:"isSerial"` @@ -79,6 +81,7 @@ type GiftAdd struct { TaxExemption string // 征免 ContainerNumber string // 箱号 SealNumber string // 封号 + Brand string // 品牌 Remark string // 备注 Sort int64 // 排序 } diff --git a/erp/shipment/modify/gift.go b/erp/shipment/modify/gift.go index 2e8c6d8..3037b46 100644 --- a/erp/shipment/modify/gift.go +++ b/erp/shipment/modify/gift.go @@ -2,9 +2,10 @@ package modify import ( "context" + "time" + "git.kumo.work/shama/service/client" "github.com/shopspring/decimal" - "time" ) type gift struct { @@ -36,6 +37,7 @@ type GiftItem struct { TaxExemption string `json:"taxExemption"` ContainerNumber string `json:"containerNumber"` SealNumber string `json:"sealNumber"` + Brand string `json:"brand"` Remark string `json:"remark"` Sort int64 `json:"sort"` IsSerial int64 `json:"isSerial"` @@ -78,6 +80,7 @@ type GiftAdd struct { TaxExemption string // 征免 ContainerNumber string // 箱号 SealNumber string // 封号 + Brand string // 品牌 Remark string // 备注 Sort int64 // 排序 }