order.go
470 字节
package protocol
/*OrderDetail */
type OrderDetailRequest struct {
Id int64 `json:"id"`
}
type OrderDetailResponse struct {
Order interface{} `json:"order"`
Partner interface{} `json:"partner"`
}
/*OrderStatistics */
type OrderStatisticsRequest struct {
Xxx string `json:"xxx" valid:"Required"`
}
type OrderStatisticsResponse struct {
}
/*OrderList */
type OrderListRequest struct {
Xxx string `json:"xxx" valid:"Required"`
}
type OrderListResponse struct {
}