-
Notifications
You must be signed in to change notification settings - Fork 12
/
AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse.go
61 lines (52 loc) · 2.54 KB
/
AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package tmallgeniescp
import (
"encoding/xml"
"sync"
"github.com/bububa/opentaobao/model"
)
// AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse 24-销售月预测数量(产管)回传-月度 API返回值
// alibaba.tmallgenie.scp.plan.saleforcast.pm.month.upload
//
// 销售月预测数量(产管)回传-月度
type AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse struct {
model.CommonResponse
AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponseModel
}
// Reset 清空结构体
func (m *AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse) Reset() {
(&m.CommonResponse).Reset()
(&m.AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponseModel).Reset()
}
// AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponseModel is 24-销售月预测数量(产管)回传-月度 成功返回结果
type AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponseModel struct {
XMLName xml.Name `xml:"alibaba_tmallgenie_scp_plan_saleforcast_pm_month_upload_response"`
// 平台颁发的每次请求访问的唯一标识
RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
// 返回描述
ResultMsg string `json:"result_msg,omitempty" xml:"result_msg,omitempty"`
// 请求唯一ID
TraceId string `json:"trace_id,omitempty" xml:"trace_id,omitempty"`
// 返回码
ResultCode string `json:"result_code,omitempty" xml:"result_code,omitempty"`
}
// Reset 清空结构体
func (m *AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponseModel) Reset() {
m.RequestId = ""
m.ResultMsg = ""
m.TraceId = ""
m.ResultCode = ""
}
var poolAlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse = sync.Pool{
New: func() any {
return new(AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse)
},
}
// GetAlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse 从 sync.Pool 获取 AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse
func GetAlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse() *AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse {
return poolAlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse.Get().(*AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse)
}
// ReleaseAlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse 将 AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse 保存到 sync.Pool
func ReleaseAlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse(v *AlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse) {
v.Reset()
poolAlibabaTmallgenieScpPlanSaleforcastPmMonthUploadAPIResponse.Put(v)
}