feat(shipment): 添加销售产品价格相关字段
- 在saleProduct结构体中添加SalePrice销售单价字段 - 在saleProduct结构体中添加CustomsPrice报关价格字段 - 在saleProduct结构体中添加CustomsAmount报关总价字段 - 同步更新modify包中的saleProduct结构体定义
This commit is contained in:
@@ -150,6 +150,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 // 工厂名称
|
||||
|
||||
@@ -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 // 工厂名称
|
||||
|
||||
Reference in New Issue
Block a user