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,14 @@
package domain
type AlibabaAxWarehouseOutboundCallbackBigDecimal struct {
/*
每份重量 */
SkuWeight *string `json:"sku_weight,omitempty" `
}
func (s *AlibabaAxWarehouseOutboundCallbackBigDecimal) SetSkuWeight(v string) *AlibabaAxWarehouseOutboundCallbackBigDecimal {
s.SkuWeight = &v
return s
}