1
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user