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

23 lines
721 B
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 AlibabaWdkMerchantRoutingRegisterMerchantRoutingInfoRegisterDo struct {
/*
仓code为空时路由为商家维度 */
WarehouseCode *string `json:"warehouse_code,omitempty" `
/*
操作状态1-注册2-删除 */
Status *int64 `json:"status,omitempty" `
}
func (s *AlibabaWdkMerchantRoutingRegisterMerchantRoutingInfoRegisterDo) SetWarehouseCode(v string) *AlibabaWdkMerchantRoutingRegisterMerchantRoutingInfoRegisterDo {
s.WarehouseCode = &v
return s
}
func (s *AlibabaWdkMerchantRoutingRegisterMerchantRoutingInfoRegisterDo) SetStatus(v int64) *AlibabaWdkMerchantRoutingRegisterMerchantRoutingInfoRegisterDo {
s.Status = &v
return s
}