feat(product): 添加产品报关单位字段

- 在 Product 结构体中添加 MeasureUnit 字段,用于表示报关单位
This commit is contained in:
守护自己的云 2025-04-25 14:33:13 +08:00
parent 91471e0c81
commit abf3a43e98

View File

@ -86,6 +86,7 @@ type ProductEdit struct {
CustomsSerial string // hs编码
CustomsName string // 报关名称
CustomsInvoiceUnit string // 开票单位
MeasureUnit string // 报关单位
InvoiceType int64 // 开票方式 1=按净重 2=按数量
InvoiceCount decimal.Decimal // 开票数量
}