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

55 lines
1.7 KiB
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 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
}