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,54 @@
package domain
type AlibabaWdkPurchasePriceWdkopenpurchasepricesubs struct {
/*
确认标识0:核对 1:确认,必填 */
Confirm *string `json:"confirm,omitempty" `
/*
去税采购价,单位分,必填 */
PriceWithoutTax *string `json:"price_without_tax,omitempty" `
/*
含税采购价,单位分,必填 */
PriceWithTax *string `json:"price_with_tax,omitempty" `
/*
税率,必填 */
TaxRate *string `json:"tax_rate,omitempty" `
/*
商品编码,必填 */
SkuCode *string `json:"sku_code,omitempty" `
/*
淘系子订单号,必填 */
TbSubOrderId *string `json:"tb_sub_order_id,omitempty" `
}
func (s *AlibabaWdkPurchasePriceWdkopenpurchasepricesubs) SetConfirm(v string) *AlibabaWdkPurchasePriceWdkopenpurchasepricesubs {
s.Confirm = &v
return s
}
func (s *AlibabaWdkPurchasePriceWdkopenpurchasepricesubs) SetPriceWithoutTax(v string) *AlibabaWdkPurchasePriceWdkopenpurchasepricesubs {
s.PriceWithoutTax = &v
return s
}
func (s *AlibabaWdkPurchasePriceWdkopenpurchasepricesubs) SetPriceWithTax(v string) *AlibabaWdkPurchasePriceWdkopenpurchasepricesubs {
s.PriceWithTax = &v
return s
}
func (s *AlibabaWdkPurchasePriceWdkopenpurchasepricesubs) SetTaxRate(v string) *AlibabaWdkPurchasePriceWdkopenpurchasepricesubs {
s.TaxRate = &v
return s
}
func (s *AlibabaWdkPurchasePriceWdkopenpurchasepricesubs) SetSkuCode(v string) *AlibabaWdkPurchasePriceWdkopenpurchasepricesubs {
s.SkuCode = &v
return s
}
func (s *AlibabaWdkPurchasePriceWdkopenpurchasepricesubs) SetTbSubOrderId(v string) *AlibabaWdkPurchasePriceWdkopenpurchasepricesubs {
s.TbSubOrderId = &v
return s
}