You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/service/topsdk/ability370/domain/TaobaoTbkDgMaterialOptional...

29 lines
901 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package domain
type TaobaoTbkDgMaterialOptionalUcrowdrankitems struct {
/*
物料评估-商品佣金率1234表示12.34%material_id=41377时选填 */
Commirate *int64 `json:"commirate,omitempty" `
/*
物料评估-商品价格单位material_id=41377时选填 */
Price *string `json:"price,omitempty" `
/*
物料评估-商品IDmaterial_id=41377时必填 */
ItemId *string `json:"item_id,omitempty" `
}
func (s *TaobaoTbkDgMaterialOptionalUcrowdrankitems) SetCommirate(v int64) *TaobaoTbkDgMaterialOptionalUcrowdrankitems {
s.Commirate = &v
return s
}
func (s *TaobaoTbkDgMaterialOptionalUcrowdrankitems) SetPrice(v string) *TaobaoTbkDgMaterialOptionalUcrowdrankitems {
s.Price = &v
return s
}
func (s *TaobaoTbkDgMaterialOptionalUcrowdrankitems) SetItemId(v string) *TaobaoTbkDgMaterialOptionalUcrowdrankitems {
s.ItemId = &v
return s
}