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

31 lines
816 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package domain
type AlibabaWdkSkuBarcodeQueryBarcodeBo struct {
/*
条码 */
Barcode *string `json:"barcode,omitempty" `
/*
条码商品规格6比如一个条码对应6瓶啤酒 */
SpuSpec *int64 `json:"spu_spec,omitempty" `
/*
是否主条码:1是主条码0非主条码 */
MainFlag *string `json:"main_flag,omitempty" `
}
func (s *AlibabaWdkSkuBarcodeQueryBarcodeBo) SetBarcode(v string) *AlibabaWdkSkuBarcodeQueryBarcodeBo {
s.Barcode = &v
return s
}
func (s *AlibabaWdkSkuBarcodeQueryBarcodeBo) SetSpuSpec(v int64) *AlibabaWdkSkuBarcodeQueryBarcodeBo {
s.SpuSpec = &v
return s
}
func (s *AlibabaWdkSkuBarcodeQueryBarcodeBo) SetMainFlag(v string) *AlibabaWdkSkuBarcodeQueryBarcodeBo {
s.MainFlag = &v
return s
}