feat(erp): 添加海关编号字段到应收自定义产品项目
- 在 ReceivableCustomsProductItem 结构体中新增 customsSerial 字段 - 为海关编号字段添加 JSON 标签和注释说明
This commit is contained in:
@@ -107,6 +107,7 @@ type ReceivableProductItem struct {
|
|||||||
type ReceivableCustomsProductItem struct {
|
type ReceivableCustomsProductItem struct {
|
||||||
Id int64 `json:"id"`
|
Id int64 `json:"id"`
|
||||||
Name string `json:"name"` // 中文品名
|
Name string `json:"name"` // 中文品名
|
||||||
|
CustomsSerial string `json:"customsSerial"` // 海关编号
|
||||||
Count decimal.Decimal `json:"count"` // 数量
|
Count decimal.Decimal `json:"count"` // 数量
|
||||||
InvoiceUnit string `json:"invoiceUnit"` // 开票单位
|
InvoiceUnit string `json:"invoiceUnit"` // 开票单位
|
||||||
AddTaxRate decimal.Decimal `json:"addTaxRate"` // 增值税率
|
AddTaxRate decimal.Decimal `json:"addTaxRate"` // 增值税率
|
||||||
|
|||||||
Reference in New Issue
Block a user