You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
2.0 KiB
31 lines
2.0 KiB
package request
|
|
|
|
type SearchOrderList struct {
|
|
OrderID string `json:"orderID" form:"orderID"` // 订单号
|
|
Code string `json:"code" form:"code"` // 网红码?
|
|
Status int `json:"status" form:"status"` // 订单状态 1-待付款 2-待发货 3-已发货 4-已完成 5-已取消
|
|
GoodsID int `json:"goodsID" form:"goodsID"` // 商品id
|
|
SpuNo string `json:"spu_no" form:"spu_no"` // spu_no
|
|
Name string `json:"name" form:"name"` // 收件人姓名
|
|
Phone string `json:"phone" form:"phone"` // 收件人电话
|
|
CreatedAt string `json:"createdAt" form:"createdAt"` // 订单下单时间
|
|
CreatedAtStart string `json:"createdAtStart" form:"createdAtStart"` // 下单起始时间
|
|
CreatedAtEnd string `json:"createdAtEnd" form:"createdAtEnd"` // 下单截至时间
|
|
UserId string `json:"userId" form:"userId"` // 用户id
|
|
InfluenceId string `json:"influenceId" form:"influenceId"` // 网红id
|
|
StoreNo string `json:"storeNo" form:"storeNo"` // 商户编号
|
|
MissionTitle string `json:"missionTitle" form:"missionTitle"` // 任务名称
|
|
PageInfo
|
|
}
|
|
type SearchOrderDetail struct {
|
|
OrderID string `json:"orderID" form:"orderID"` //订单号
|
|
}
|
|
|
|
type SearchOrderPostSale struct {
|
|
OrderId string `json:"orderId" form:"orderId"` // 订单号
|
|
Status int `json:"status" form:"status"` // 处理状态 1:待审核 2:退款中 3:退款成功 4:退款失败
|
|
UserId string `json:"userId" form:"userId"` // 用户id
|
|
UserIds []string `json:"userIds" form:"userIds"` // 用户ids
|
|
CreatedAtStart string `json:"createdAtStart" form:"createdAtStart"` // 创建时间区间开始
|
|
CreatedAtEnd string `json:"createdAtEnd" form:"createdAtEnd"` // 创建时间区间结束
|
|
}
|
|
|