32 lines
518 B
Go
32 lines
518 B
Go
package response
|
|
|
|
import (
|
|
"topsdk/defaultability/domain"
|
|
)
|
|
|
|
type AlibabaAlscUnionElemePromotionStorepromotionQueryResponse struct {
|
|
|
|
/*
|
|
System request id
|
|
*/
|
|
RequestId string `json:"request_id,omitempty" `
|
|
|
|
/*
|
|
System body
|
|
*/
|
|
Body string
|
|
|
|
/*
|
|
分页数据
|
|
*/
|
|
Data domain.AlibabaAlscUnionElemePromotionStorepromotionQueryPageModel `json:"data,omitempty" `
|
|
/*
|
|
返回码
|
|
*/
|
|
ResultCode int64 `json:"result_code,omitempty" `
|
|
/*
|
|
返回消息
|
|
*/
|
|
Message string `json:"message,omitempty" `
|
|
}
|