This commit is contained in:
邹宗楠
2023-06-15 09:08:54 +08:00
parent d37bb62403
commit 65976332fc
749 changed files with 41278 additions and 14 deletions

View File

@@ -0,0 +1,38 @@
package domain
type AlibabaWdkPurchasePriceWdkOpenPurchasePrice struct {
/*
经营店id必填 */
StoreId *string `json:"store_id,omitempty" `
/*
淘系主订单号,必填 */
TbOrderId *string `json:"tb_order_id,omitempty" `
/*
子单信息 */
WdkOpenPurchasePriceSubs *[]AlibabaWdkPurchasePriceWdkopenpurchasepricesubs `json:"wdk_open_purchase_price_subs,omitempty" `
/*
渠道标识45=猫超100=共享零售 */
OrderFrom *int64 `json:"order_from,omitempty" `
}
func (s *AlibabaWdkPurchasePriceWdkOpenPurchasePrice) SetStoreId(v string) *AlibabaWdkPurchasePriceWdkOpenPurchasePrice {
s.StoreId = &v
return s
}
func (s *AlibabaWdkPurchasePriceWdkOpenPurchasePrice) SetTbOrderId(v string) *AlibabaWdkPurchasePriceWdkOpenPurchasePrice {
s.TbOrderId = &v
return s
}
func (s *AlibabaWdkPurchasePriceWdkOpenPurchasePrice) SetWdkOpenPurchasePriceSubs(v []AlibabaWdkPurchasePriceWdkopenpurchasepricesubs) *AlibabaWdkPurchasePriceWdkOpenPurchasePrice {
s.WdkOpenPurchasePriceSubs = &v
return s
}
func (s *AlibabaWdkPurchasePriceWdkOpenPurchasePrice) SetOrderFrom(v int64) *AlibabaWdkPurchasePriceWdkOpenPurchasePrice {
s.OrderFrom = &v
return s
}