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

31 lines
789 B
Go

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
}