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,27 @@
package response
type AlibabaWdkStockPublishResponse struct {
/*
System request id
*/
RequestId string `json:"request_id,omitempty" `
/*
System body
*/
Body string
/*
success
*/
IsSuccess bool `json:"is_success,omitempty" `
/*
errorCode
*/
MsgCode string `json:"msg_code,omitempty" `
/*
errorMsg
*/
Message string `json:"message,omitempty" `
}

View File

@@ -0,0 +1,23 @@
package response
import (
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability589/domain"
)
type AlibabaWdkUmsInventoryPublishResponse struct {
/*
System request id
*/
RequestId string `json:"request_id,omitempty" `
/*
System body
*/
Body string
/*
调用服务返回结果
*/
ApiResult domain.AlibabaWdkUmsInventoryPublishApiResult `json:"api_result,omitempty" `
}