feat(shipment): 添加销售产品价格相关字段

- 在saleProduct结构体中添加SalePrice销售单价字段
- 在saleProduct结构体中添加CustomsPrice报关价格字段
- 在saleProduct结构体中添加CustomsAmount报关总价字段
- 同步更新modify包中的saleProduct结构体定义
This commit is contained in:
2026-07-14 15:33:00 +08:00
parent 77a10fdf42
commit f2058e9d66
2 changed files with 6 additions and 0 deletions

View File

@@ -152,6 +152,9 @@ type SaleProductAdd struct {
TotalCustomsNetWeight decimal.Decimal // 报关总净重
CustomsGrossWeight decimal.Decimal // 报关毛重
TotalCustomsGrossWeight decimal.Decimal // 报关总毛重
SalePrice decimal.Decimal // 销售单价
CustomsPrice decimal.Decimal // 报关价格
CustomsAmount decimal.Decimal // 报关总价
CustomsBrand string // 品牌
DomesticSupply string // 货源地
FactoryName string // 工厂名称