package me
|
|
|
|
type BomArt struct {
|
|
Qty int
|
|
ArtId string
|
|
}
|
|
|
|
// BomLst前端传入结构体
|
|
type BomLstWithArt struct {
|
|
ArtId string `json:"artId"`
|
|
BomLst BomLst `json:"bomLst"`
|
|
}
|