添加字段

This commit is contained in:
守护自己的云 2025-02-21 11:03:24 +08:00
parent 8c7cf0ba64
commit 1db17f21a8

View File

@ -154,13 +154,15 @@ func (a *accounting) Edit(ctx context.Context, args ArgsAccountingEdit) (err err
} }
type InvoiceProductItem struct { type InvoiceProductItem struct {
FactoryId int64 `json:"factoryId" label:"工厂id"` // 工厂id FactoryId int64 `json:"factoryId" label:"工厂id"` // 工厂id
FactoryName string `json:"factoryName" label:"工厂名称"` // 工厂名称 FactoryName string `json:"factoryName" label:"工厂名称"` // 工厂名称
CustomsSerial string `json:"customsSerial" label:"hs编码"` // hs编码 CustomsSerial string `json:"customsSerial" label:"hs编码"` // hs编码
CustomsName string `json:"customsName" label:"报关名称"` // 报关名称 CustomsName string `json:"customsName" label:"报关名称"` // 报关名称
CustomsInvoiceUnit string `json:"customsInvoiceUnit" label:"开票单位"` // 开票单位 CustomsInvoiceUnit string `json:"customsInvoiceUnit" label:"开票单位"` // 开票单位
InvoiceCount decimal.Decimal `json:"invoiceCount" label:"开票数量"` // 开票数量 CustomsUnit string `json:"customsUnit" label:"报关单位"` // 报关单位
Amount decimal.Decimal `json:"amount" label:"金额"` // 金额 RealCustomsInvoiceUnit string `json:"realCustomsInvoiceUnit" label:"实际开票单位"` // 实际开票单位
InvoiceCount decimal.Decimal `json:"invoiceCount" label:"开票数量"` // 开票数量
Amount decimal.Decimal `json:"amount" label:"金额"` // 金额
} }
// InvoiceProducts @TITLE 开票产品资料 // InvoiceProducts @TITLE 开票产品资料