修改淘宝订单的平台结算获取方式

This commit is contained in:
邹宗楠
2023-12-06 13:43:29 +08:00
parent d606d5b756
commit a3f88eceef
28 changed files with 1374 additions and 276 deletions

View File

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