This commit is contained in:
邹宗楠
2023-06-29 14:34:37 +08:00
parent 638192d170
commit 43588566d5
7 changed files with 82 additions and 109 deletions

View File

@@ -1,22 +1,20 @@
package domain
type AlibabaAelophyOrderGetOrderGetRequest struct {
/*
经营店编码 */
StoreId *string `json:"store_id,omitempty" `
/*
五道口订单编码 */
BizOrderId *int64 `json:"biz_order_id,omitempty" `
/*
经营店编码 kk */
StoreId *string `json:"store_id,omitempty" `
/*
五道口订单编码 */
BizOrderId *int64 `json:"biz_order_id,omitempty" `
}
func (s *AlibabaAelophyOrderGetOrderGetRequest) SetStoreId(v string) *AlibabaAelophyOrderGetOrderGetRequest {
s.StoreId = &v
return s
s.StoreId = &v
return s
}
func (s *AlibabaAelophyOrderGetOrderGetRequest) SetBizOrderId(v int64) *AlibabaAelophyOrderGetOrderGetRequest {
s.BizOrderId = &v
return s
s.BizOrderId = &v
return s
}