1
This commit is contained in:
@@ -1,30 +1,30 @@
|
|||||||
package request
|
package request
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
"topsdk/util"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/util"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingItempoolActivitySkuAddRequest struct {
|
type AlibabaRetailMarketingItempoolActivitySkuAddRequest struct {
|
||||||
/*
|
/*
|
||||||
入参 */
|
入参 */
|
||||||
Param *domain.AlibabaRetailMarketingItempoolActivitySkuAddItemPoolActivityElementOperateRequest `json:"param" required:"true" `
|
Param *domain.AlibabaRetailMarketingItempoolActivitySkuAddItemPoolActivityElementOperateRequest `json:"param" required:"true" `
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *AlibabaRetailMarketingItempoolActivitySkuAddRequest) SetParam(v domain.AlibabaRetailMarketingItempoolActivitySkuAddItemPoolActivityElementOperateRequest) *AlibabaRetailMarketingItempoolActivitySkuAddRequest {
|
func (s *AlibabaRetailMarketingItempoolActivitySkuAddRequest) SetParam(v domain.AlibabaRetailMarketingItempoolActivitySkuAddItemPoolActivityElementOperateRequest) *AlibabaRetailMarketingItempoolActivitySkuAddRequest {
|
||||||
s.Param = &v
|
s.Param = &v
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
func (req *AlibabaRetailMarketingItempoolActivitySkuAddRequest) ToMap() map[string]interface{} {
|
func (req *AlibabaRetailMarketingItempoolActivitySkuAddRequest) ToMap() map[string]interface{} {
|
||||||
paramMap := make(map[string]interface{})
|
paramMap := make(map[string]interface{})
|
||||||
if(req.Param != nil) {
|
if req.Param != nil {
|
||||||
paramMap["param"] = util.ConvertStruct(*req.Param)
|
paramMap["param"] = util.ConvertStruct(*req.Param)
|
||||||
}
|
}
|
||||||
return paramMap
|
return paramMap
|
||||||
}
|
}
|
||||||
|
|
||||||
func (req *AlibabaRetailMarketingItempoolActivitySkuAddRequest) ToFileMap() map[string]interface{} {
|
func (req *AlibabaRetailMarketingItempoolActivitySkuAddRequest) ToFileMap() map[string]interface{} {
|
||||||
fileMap := make(map[string]interface{})
|
fileMap := make(map[string]interface{})
|
||||||
return fileMap
|
return fileMap
|
||||||
}
|
}
|
||||||
@@ -1,30 +1,30 @@
|
|||||||
package request
|
package request
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
"topsdk/util"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/util"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingItempoolActivitySkuDeleteRequest struct {
|
type AlibabaRetailMarketingItempoolActivitySkuDeleteRequest struct {
|
||||||
/*
|
/*
|
||||||
入参 */
|
入参 */
|
||||||
Param *domain.AlibabaRetailMarketingItempoolActivitySkuDeleteItemPoolActivityElementOperateRequest `json:"param" required:"true" `
|
Param *domain.AlibabaRetailMarketingItempoolActivitySkuDeleteItemPoolActivityElementOperateRequest `json:"param" required:"true" `
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *AlibabaRetailMarketingItempoolActivitySkuDeleteRequest) SetParam(v domain.AlibabaRetailMarketingItempoolActivitySkuDeleteItemPoolActivityElementOperateRequest) *AlibabaRetailMarketingItempoolActivitySkuDeleteRequest {
|
func (s *AlibabaRetailMarketingItempoolActivitySkuDeleteRequest) SetParam(v domain.AlibabaRetailMarketingItempoolActivitySkuDeleteItemPoolActivityElementOperateRequest) *AlibabaRetailMarketingItempoolActivitySkuDeleteRequest {
|
||||||
s.Param = &v
|
s.Param = &v
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
func (req *AlibabaRetailMarketingItempoolActivitySkuDeleteRequest) ToMap() map[string]interface{} {
|
func (req *AlibabaRetailMarketingItempoolActivitySkuDeleteRequest) ToMap() map[string]interface{} {
|
||||||
paramMap := make(map[string]interface{})
|
paramMap := make(map[string]interface{})
|
||||||
if(req.Param != nil) {
|
if req.Param != nil {
|
||||||
paramMap["param"] = util.ConvertStruct(*req.Param)
|
paramMap["param"] = util.ConvertStruct(*req.Param)
|
||||||
}
|
}
|
||||||
return paramMap
|
return paramMap
|
||||||
}
|
}
|
||||||
|
|
||||||
func (req *AlibabaRetailMarketingItempoolActivitySkuDeleteRequest) ToFileMap() map[string]interface{} {
|
func (req *AlibabaRetailMarketingItempoolActivitySkuDeleteRequest) ToFileMap() map[string]interface{} {
|
||||||
fileMap := make(map[string]interface{})
|
fileMap := make(map[string]interface{})
|
||||||
return fileMap
|
return fileMap
|
||||||
}
|
}
|
||||||
@@ -1,30 +1,30 @@
|
|||||||
package request
|
package request
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
"topsdk/util"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/util"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingItempoolActivityUpdateRequest struct {
|
type AlibabaRetailMarketingItempoolActivityUpdateRequest struct {
|
||||||
/*
|
/*
|
||||||
更新商品池活动参数 */
|
更新商品池活动参数 */
|
||||||
Param *domain.AlibabaRetailMarketingItempoolActivityUpdateItemPoolActivityOperateRequest `json:"param" required:"true" `
|
Param *domain.AlibabaRetailMarketingItempoolActivityUpdateItemPoolActivityOperateRequest `json:"param" required:"true" `
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *AlibabaRetailMarketingItempoolActivityUpdateRequest) SetParam(v domain.AlibabaRetailMarketingItempoolActivityUpdateItemPoolActivityOperateRequest) *AlibabaRetailMarketingItempoolActivityUpdateRequest {
|
func (s *AlibabaRetailMarketingItempoolActivityUpdateRequest) SetParam(v domain.AlibabaRetailMarketingItempoolActivityUpdateItemPoolActivityOperateRequest) *AlibabaRetailMarketingItempoolActivityUpdateRequest {
|
||||||
s.Param = &v
|
s.Param = &v
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
func (req *AlibabaRetailMarketingItempoolActivityUpdateRequest) ToMap() map[string]interface{} {
|
func (req *AlibabaRetailMarketingItempoolActivityUpdateRequest) ToMap() map[string]interface{} {
|
||||||
paramMap := make(map[string]interface{})
|
paramMap := make(map[string]interface{})
|
||||||
if(req.Param != nil) {
|
if req.Param != nil {
|
||||||
paramMap["param"] = util.ConvertStruct(*req.Param)
|
paramMap["param"] = util.ConvertStruct(*req.Param)
|
||||||
}
|
}
|
||||||
return paramMap
|
return paramMap
|
||||||
}
|
}
|
||||||
|
|
||||||
func (req *AlibabaRetailMarketingItempoolActivityUpdateRequest) ToFileMap() map[string]interface{} {
|
func (req *AlibabaRetailMarketingItempoolActivityUpdateRequest) ToFileMap() map[string]interface{} {
|
||||||
fileMap := make(map[string]interface{})
|
fileMap := make(map[string]interface{})
|
||||||
return fileMap
|
return fileMap
|
||||||
}
|
}
|
||||||
@@ -1,30 +1,30 @@
|
|||||||
package request
|
package request
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
"topsdk/util"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/util"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingItempoolSkuQueryRequest struct {
|
type AlibabaRetailMarketingItempoolSkuQueryRequest struct {
|
||||||
/*
|
/*
|
||||||
请求入参 */
|
请求入参 */
|
||||||
Param0 *domain.AlibabaRetailMarketingItempoolSkuQueryItemPoolActivitySkuQueryRequest `json:"param0" required:"true" `
|
Param0 *domain.AlibabaRetailMarketingItempoolSkuQueryItemPoolActivitySkuQueryRequest `json:"param0" required:"true" `
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *AlibabaRetailMarketingItempoolSkuQueryRequest) SetParam0(v domain.AlibabaRetailMarketingItempoolSkuQueryItemPoolActivitySkuQueryRequest) *AlibabaRetailMarketingItempoolSkuQueryRequest {
|
func (s *AlibabaRetailMarketingItempoolSkuQueryRequest) SetParam0(v domain.AlibabaRetailMarketingItempoolSkuQueryItemPoolActivitySkuQueryRequest) *AlibabaRetailMarketingItempoolSkuQueryRequest {
|
||||||
s.Param0 = &v
|
s.Param0 = &v
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
func (req *AlibabaRetailMarketingItempoolSkuQueryRequest) ToMap() map[string]interface{} {
|
func (req *AlibabaRetailMarketingItempoolSkuQueryRequest) ToMap() map[string]interface{} {
|
||||||
paramMap := make(map[string]interface{})
|
paramMap := make(map[string]interface{})
|
||||||
if(req.Param0 != nil) {
|
if req.Param0 != nil {
|
||||||
paramMap["param0"] = util.ConvertStruct(*req.Param0)
|
paramMap["param0"] = util.ConvertStruct(*req.Param0)
|
||||||
}
|
}
|
||||||
return paramMap
|
return paramMap
|
||||||
}
|
}
|
||||||
|
|
||||||
func (req *AlibabaRetailMarketingItempoolSkuQueryRequest) ToFileMap() map[string]interface{} {
|
func (req *AlibabaRetailMarketingItempoolSkuQueryRequest) ToFileMap() map[string]interface{} {
|
||||||
fileMap := make(map[string]interface{})
|
fileMap := make(map[string]interface{})
|
||||||
return fileMap
|
return fileMap
|
||||||
}
|
}
|
||||||
@@ -1,23 +1,23 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingBuygiftActivityCreateResponse struct {
|
type AlibabaRetailMarketingBuygiftActivityCreateResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
操作结果
|
操作结果
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingBuygiftActivityCreateOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingBuygiftActivityCreateOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,21 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import "git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
"topsdk/ability2770/domain"
|
|
||||||
)
|
|
||||||
|
|
||||||
type AlibabaRetailMarketingBuygiftActivityDeleteResponse struct {
|
type AlibabaRetailMarketingBuygiftActivityDeleteResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
操作结果
|
操作结果
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingBuygiftActivityDeleteOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingBuygiftActivityDeleteOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,35 +1,35 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingBuygiftActivityQueryResponse struct {
|
type AlibabaRetailMarketingBuygiftActivityQueryResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
买赠活动查询结果
|
买赠活动查询结果
|
||||||
*/
|
*/
|
||||||
Data domain.AlibabaRetailMarketingBuygiftActivityQueryBuyGiftPromotionActivityDTO `json:"data,omitempty" `
|
Data domain.AlibabaRetailMarketingBuygiftActivityQueryBuyGiftPromotionActivityDTO `json:"data,omitempty" `
|
||||||
/*
|
/*
|
||||||
成功标识
|
成功标识
|
||||||
*/
|
*/
|
||||||
Succeed bool `json:"succeed,omitempty" `
|
Succeed bool `json:"succeed,omitempty" `
|
||||||
/*
|
/*
|
||||||
错误信息
|
错误信息
|
||||||
*/
|
*/
|
||||||
ErrMessage string `json:"err_message,omitempty" `
|
ErrMessage string `json:"err_message,omitempty" `
|
||||||
/*
|
/*
|
||||||
错误码
|
错误码
|
||||||
*/
|
*/
|
||||||
ErrNumber string `json:"err_number,omitempty" `
|
ErrNumber string `json:"err_number,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingBuygiftActivitySaveResponse struct {
|
type AlibabaRetailMarketingBuygiftActivitySaveResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
操作结果
|
操作结果
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingBuygiftActivitySaveOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingBuygiftActivitySaveOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingBuygiftActivitySkuAddResponse struct {
|
type AlibabaRetailMarketingBuygiftActivitySkuAddResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
操作结果
|
操作结果
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingBuygiftActivitySkuAddOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingBuygiftActivitySkuAddOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingBuygiftActivitySkuDeleteResponse struct {
|
type AlibabaRetailMarketingBuygiftActivitySkuDeleteResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
操作结果
|
操作结果
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingBuygiftActivitySkuDeleteOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingBuygiftActivitySkuDeleteOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingBuygiftActivityUpdateResponse struct {
|
type AlibabaRetailMarketingBuygiftActivityUpdateResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
操作结果
|
操作结果
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingBuygiftActivityUpdateOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingBuygiftActivityUpdateOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,39 +1,39 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingBuygiftSkuQueryResponse struct {
|
type AlibabaRetailMarketingBuygiftSkuQueryResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
买赠商品查询结果
|
买赠商品查询结果
|
||||||
*/
|
*/
|
||||||
Data []domain.AlibabaRetailMarketingBuygiftSkuQueryBuyGiftActivitySkuDTO `json:"data,omitempty" `
|
Data []domain.AlibabaRetailMarketingBuygiftSkuQueryBuyGiftActivitySkuDTO `json:"data,omitempty" `
|
||||||
/*
|
/*
|
||||||
成功标识
|
成功标识
|
||||||
*/
|
*/
|
||||||
Succeed bool `json:"succeed,omitempty" `
|
Succeed bool `json:"succeed,omitempty" `
|
||||||
/*
|
/*
|
||||||
错误信息
|
错误信息
|
||||||
*/
|
*/
|
||||||
ErrMessage string `json:"err_message,omitempty" `
|
ErrMessage string `json:"err_message,omitempty" `
|
||||||
/*
|
/*
|
||||||
错误码
|
错误码
|
||||||
*/
|
*/
|
||||||
ErrNumber string `json:"err_number,omitempty" `
|
ErrNumber string `json:"err_number,omitempty" `
|
||||||
/*
|
/*
|
||||||
分页信息
|
分页信息
|
||||||
*/
|
*/
|
||||||
PageInfo domain.AlibabaRetailMarketingBuygiftSkuQueryPageInfoDTO `json:"page_info,omitempty" `
|
PageInfo domain.AlibabaRetailMarketingBuygiftSkuQueryPageInfoDTO `json:"page_info,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,21 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import "git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
"topsdk/ability2770/domain"
|
|
||||||
)
|
|
||||||
|
|
||||||
type AlibabaRetailMarketingItemdiscountActivitySaveResponse struct {
|
type AlibabaRetailMarketingItemdiscountActivitySaveResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
操作结果
|
操作结果
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingItemdiscountActivitySaveOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingItemdiscountActivitySaveOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,21 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import "git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
"topsdk/ability2770/domain"
|
|
||||||
)
|
|
||||||
|
|
||||||
type AlibabaRetailMarketingItemdiscountActivitySkuAddResponse struct {
|
type AlibabaRetailMarketingItemdiscountActivitySkuAddResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
操作结果
|
操作结果
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingItemdiscountActivitySkuAddOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingItemdiscountActivitySkuAddOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingItemdiscountActivitySkuDeleteResponse struct {
|
type AlibabaRetailMarketingItemdiscountActivitySkuDeleteResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
操作结果
|
操作结果
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingItemdiscountActivitySkuDeleteOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingItemdiscountActivitySkuDeleteOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,39 +1,39 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingItemdiscountSkuQueryResponse struct {
|
type AlibabaRetailMarketingItemdiscountSkuQueryResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
响应体
|
响应体
|
||||||
*/
|
*/
|
||||||
Data []domain.AlibabaRetailMarketingItemdiscountSkuQuerySkuActivityElementDTO `json:"data,omitempty" `
|
Data []domain.AlibabaRetailMarketingItemdiscountSkuQuerySkuActivityElementDTO `json:"data,omitempty" `
|
||||||
/*
|
/*
|
||||||
成功标识
|
成功标识
|
||||||
*/
|
*/
|
||||||
Succeed bool `json:"succeed,omitempty" `
|
Succeed bool `json:"succeed,omitempty" `
|
||||||
/*
|
/*
|
||||||
错误信息
|
错误信息
|
||||||
*/
|
*/
|
||||||
ErrMessage string `json:"err_message,omitempty" `
|
ErrMessage string `json:"err_message,omitempty" `
|
||||||
/*
|
/*
|
||||||
错误码
|
错误码
|
||||||
*/
|
*/
|
||||||
ErrNumber string `json:"err_number,omitempty" `
|
ErrNumber string `json:"err_number,omitempty" `
|
||||||
/*
|
/*
|
||||||
分页信息
|
分页信息
|
||||||
*/
|
*/
|
||||||
PageInfo domain.AlibabaRetailMarketingItemdiscountSkuQueryPageInfoDTO `json:"page_info,omitempty" `
|
PageInfo domain.AlibabaRetailMarketingItemdiscountSkuQueryPageInfoDTO `json:"page_info,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingItempoolActivityCreateResponse struct {
|
type AlibabaRetailMarketingItempoolActivityCreateResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
操作结果
|
操作结果
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingItempoolActivityCreateOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingItempoolActivityCreateOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingItempoolActivityDeleteResponse struct {
|
type AlibabaRetailMarketingItempoolActivityDeleteResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
出参
|
出参
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingItempoolActivityDeleteOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingItempoolActivityDeleteOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,35 +1,35 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingItempoolActivityQueryResponse struct {
|
type AlibabaRetailMarketingItempoolActivityQueryResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
响应体
|
响应体
|
||||||
*/
|
*/
|
||||||
Data domain.AlibabaRetailMarketingItempoolActivityQueryItemPoolPromotionActivityDTO `json:"data,omitempty" `
|
Data domain.AlibabaRetailMarketingItempoolActivityQueryItemPoolPromotionActivityDTO `json:"data,omitempty" `
|
||||||
/*
|
/*
|
||||||
成功标识
|
成功标识
|
||||||
*/
|
*/
|
||||||
Succeed bool `json:"succeed,omitempty" `
|
Succeed bool `json:"succeed,omitempty" `
|
||||||
/*
|
/*
|
||||||
错误信息
|
错误信息
|
||||||
*/
|
*/
|
||||||
ErrMessage string `json:"err_message,omitempty" `
|
ErrMessage string `json:"err_message,omitempty" `
|
||||||
/*
|
/*
|
||||||
错误码
|
错误码
|
||||||
*/
|
*/
|
||||||
ErrNumber string `json:"err_number,omitempty" `
|
ErrNumber string `json:"err_number,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingItempoolActivitySaveResponse struct {
|
type AlibabaRetailMarketingItempoolActivitySaveResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
操作结果
|
操作结果
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingItempoolActivitySaveOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingItempoolActivitySaveOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingItempoolActivitySkuAddResponse struct {
|
type AlibabaRetailMarketingItempoolActivitySkuAddResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
出参
|
出参
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingItempoolActivitySkuAddOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingItempoolActivitySkuAddOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,21 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import "git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
"topsdk/ability2770/domain"
|
|
||||||
)
|
|
||||||
|
|
||||||
type AlibabaRetailMarketingItempoolActivitySkuDeleteResponse struct {
|
type AlibabaRetailMarketingItempoolActivitySkuDeleteResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
出参
|
出参
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingItempoolActivitySkuDeleteOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingItempoolActivitySkuDeleteOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingItempoolActivityUpdateResponse struct {
|
type AlibabaRetailMarketingItempoolActivityUpdateResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
操作结果
|
操作结果
|
||||||
*/
|
*/
|
||||||
Result domain.AlibabaRetailMarketingItempoolActivityUpdateOctopusOpenResult `json:"result,omitempty" `
|
Result domain.AlibabaRetailMarketingItempoolActivityUpdateOctopusOpenResult `json:"result,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,39 +1,39 @@
|
|||||||
package response
|
package response
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"topsdk/ability2770/domain"
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability2770/domain"
|
||||||
)
|
)
|
||||||
|
|
||||||
type AlibabaRetailMarketingItempoolSkuQueryResponse struct {
|
type AlibabaRetailMarketingItempoolSkuQueryResponse struct {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System request id
|
System request id
|
||||||
*/
|
*/
|
||||||
RequestId string `json:"request_id,omitempty" `
|
RequestId string `json:"request_id,omitempty" `
|
||||||
|
|
||||||
/*
|
/*
|
||||||
System body
|
System body
|
||||||
*/
|
*/
|
||||||
Body string
|
Body string
|
||||||
|
|
||||||
/*
|
/*
|
||||||
响应体
|
响应体
|
||||||
*/
|
*/
|
||||||
Data []domain.AlibabaRetailMarketingItempoolSkuQueryItemPoolSkuActivityElementDTO `json:"data,omitempty" `
|
Data []domain.AlibabaRetailMarketingItempoolSkuQueryItemPoolSkuActivityElementDTO `json:"data,omitempty" `
|
||||||
/*
|
/*
|
||||||
成功标识
|
成功标识
|
||||||
*/
|
*/
|
||||||
Succeed bool `json:"succeed,omitempty" `
|
Succeed bool `json:"succeed,omitempty" `
|
||||||
/*
|
/*
|
||||||
错误信息
|
错误信息
|
||||||
*/
|
*/
|
||||||
ErrMessage string `json:"err_message,omitempty" `
|
ErrMessage string `json:"err_message,omitempty" `
|
||||||
/*
|
/*
|
||||||
错误码
|
错误码
|
||||||
*/
|
*/
|
||||||
ErrNumber string `json:"err_number,omitempty" `
|
ErrNumber string `json:"err_number,omitempty" `
|
||||||
/*
|
/*
|
||||||
分页信息
|
分页信息
|
||||||
*/
|
*/
|
||||||
PageInfo domain.AlibabaRetailMarketingItempoolSkuQueryPageInfoDTO `json:"page_info,omitempty" `
|
PageInfo domain.AlibabaRetailMarketingItempoolSkuQueryPageInfoDTO `json:"page_info,omitempty" `
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user