From bdd3d825b9e2879bc9b29529bd5970f8da27cb06 Mon Sep 17 00:00:00 2001 From: kanade Date: Thu, 24 Oct 2024 16:29:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=BC=E5=87=BA=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- erp/bean/shipment.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erp/bean/shipment.go b/erp/bean/shipment.go index 6b1a79e..22276e2 100644 --- a/erp/bean/shipment.go +++ b/erp/bean/shipment.go @@ -37,4 +37,6 @@ type CustomsProductItem struct { ContainerNumber string `json:"containerNumber" label:"箱号"` // 箱号 SealNumber string `json:"sealNumber" label:"封号"` // 封号 Remark string `json:"remark" label:"备注"` // 备注 + ShipmentProductId int64 `json:"shipmentProductId" label:"产品id"` // 产品id + ShipmentGiftId int64 `json:"shipmentGiftId" label:"赠品id"` // 赠品id }