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,23 @@
package response
import (
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/defaultability/domain"
)
type TaobaoKfcKeywordSearchResponse struct {
/*
System request id
*/
RequestId string `json:"request_id,omitempty" `
/*
System body
*/
Body string
/*
KFC 关键词过滤匹配结果
*/
KfcSearchResult domain.TaobaoKfcKeywordSearchKfcSearchResult `json:"kfc_search_result,omitempty" `
}

View File

@@ -0,0 +1,27 @@
package response
type TaobaoTmcMessageProduceResponse struct {
/*
System request id
*/
RequestId string `json:"request_id,omitempty" `
/*
System body
*/
Body string
/*
是否成功
*/
IsSuccess bool `json:"is_success,omitempty" `
/*
投递目标数
*/
Total int64 `json:"total,omitempty" `
/*
消息ID
*/
MsgIds []string `json:"msg_ids,omitempty" `
}

View File

@@ -0,0 +1,19 @@
package response
type TaobaoTmcUserCancelResponse struct {
/*
System request id
*/
RequestId string `json:"request_id,omitempty" `
/*
System body
*/
Body string
/*
是否成功,如果为false并且没有错误码表示删除的用户不存在。
*/
IsSuccess bool `json:"is_success,omitempty" `
}

View File

@@ -0,0 +1,23 @@
package response
import (
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/defaultability/domain"
)
type TaobaoTmcUserGetResponse struct {
/*
System request id
*/
RequestId string `json:"request_id,omitempty" `
/*
System body
*/
Body string
/*
开通的用户数据
*/
TmcUser domain.TaobaoTmcUserGetTmcUser `json:"tmc_user,omitempty" `
}

View File

@@ -0,0 +1,19 @@
package response
type TaobaoTmcUserPermitResponse struct {
/*
System request id
*/
RequestId string `json:"request_id,omitempty" `
/*
System body
*/
Body string
/*
是否成功
*/
IsSuccess bool `json:"is_success,omitempty" `
}