Files
baseapi/platformapi/tao_vegetable/sdk/ability585/domain/AlibabaWdkWholesaleInboundorderCommitInboundItemInfo.go
邹宗楠 65976332fc 1
2023-06-15 09:08:54 +08:00

23 lines
639 B
Go

package domain
type AlibabaWdkWholesaleInboundorderCommitInboundItemInfo struct {
/*
收货数量 */
InboundQuantity *string `json:"inbound_quantity,omitempty" `
/*
商品编码 */
SkuCode *string `json:"sku_code,omitempty" `
}
func (s *AlibabaWdkWholesaleInboundorderCommitInboundItemInfo) SetInboundQuantity(v string) *AlibabaWdkWholesaleInboundorderCommitInboundItemInfo {
s.InboundQuantity = &v
return s
}
func (s *AlibabaWdkWholesaleInboundorderCommitInboundItemInfo) SetSkuCode(v string) *AlibabaWdkWholesaleInboundorderCommitInboundItemInfo {
s.SkuCode = &v
return s
}