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,30 @@
package domain
type WdkWarehouseOrderDispatchCustomer struct {
/*
收货人地址 */
BuyerAddress *string `json:"buyer_address,omitempty" `
/*
收货人联系电话 */
BuyerPhone *string `json:"buyer_phone,omitempty" `
/*
收货人姓名 */
BuyerName *string `json:"buyer_name,omitempty" `
}
func (s *WdkWarehouseOrderDispatchCustomer) SetBuyerAddress(v string) *WdkWarehouseOrderDispatchCustomer {
s.BuyerAddress = &v
return s
}
func (s *WdkWarehouseOrderDispatchCustomer) SetBuyerPhone(v string) *WdkWarehouseOrderDispatchCustomer {
s.BuyerPhone = &v
return s
}
func (s *WdkWarehouseOrderDispatchCustomer) SetBuyerName(v string) *WdkWarehouseOrderDispatchCustomer {
s.BuyerName = &v
return s
}