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,22 @@
package domain
type AlibabaAelophyOrderGetOrderGetRequest struct {
/*
经营店编码 */
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
}
func (s *AlibabaAelophyOrderGetOrderGetRequest) SetBizOrderId(v int64) *AlibabaAelophyOrderGetOrderGetRequest {
s.BizOrderId = &v
return s
}