This commit is contained in:
2024-10-18 16:37:14 +08:00
parent 2c977e19e3
commit 2c467a3aec
14 changed files with 194 additions and 102 deletions

View File

@@ -86,6 +86,7 @@ type ProductAdd struct {
SalePrice *decimal.Decimal // 销售单价
BanFlag int64 // 禁用标记 1=禁用2=可用
Mold int64 // 组成类型 1=单件 2=套件
MoldCount int64 // 子组件数量
ParentId int64 // 子套件父级ID
Type string // 产品类型
Barcode string // 条形码
@@ -155,6 +156,7 @@ type ProductCustomsInfo struct {
type ReplyProductInfo struct {
Id int64 `json:"id"`
Mold int64 `json:"mold"`
MoldCount int64 `json:"moldCount"`
Serial string `json:"serial"`
CustomSerial string `json:"customSerial"`
Name string `json:"name"`