24 lines
415 B
Go
24 lines
415 B
Go
|
|
package response
|
||
|
|
|
||
|
|
import (
|
||
|
|
"repository.lenntc.com/lenntc/third-platform-sdk/sdk/fliggysdk/defaultability/domain"
|
||
|
|
)
|
||
|
|
|
||
|
|
type AlibabaFliggyPromoteOrdersListResponse struct {
|
||
|
|
|
||
|
|
/*
|
||
|
|
System request id
|
||
|
|
*/
|
||
|
|
RequestId string `json:"request_id,omitempty" `
|
||
|
|
|
||
|
|
/*
|
||
|
|
System body
|
||
|
|
*/
|
||
|
|
Body string
|
||
|
|
|
||
|
|
/*
|
||
|
|
查询结果
|
||
|
|
*/
|
||
|
|
Model domain.AlibabaFliggyPromoteOrdersListPromoteUserOrderListResponse `json:"model,omitempty" `
|
||
|
|
}
|