1
This commit is contained in:
@@ -1004,6 +1004,20 @@ func (c *OrderController) ComplaintRider() {
|
||||
})
|
||||
}
|
||||
|
||||
// @Title 获取可投诉骑手列表
|
||||
// @Description 获取可投诉骑手列表
|
||||
// @Param token header string true "认证token"
|
||||
// @Param vendorOrderID formData string true "订单ID"
|
||||
// @Success 200 {object} controllers.CallResult
|
||||
// @Failure 200 {object} controllers.CallResult
|
||||
// @router /ComplaintRiderList [get]
|
||||
func (c *OrderController) ComplaintRiderList() {
|
||||
c.callComplaintRiderList(func(params *tOrderComplaintRiderListParams) (retVal interface{}, errCode string, err error) {
|
||||
retVal, err = orderman.GetComplaintList(params.VendorOrderID)
|
||||
return retVal, "", err
|
||||
})
|
||||
}
|
||||
|
||||
// @Title 查询门店订单扣款记录
|
||||
// @Description 查询门店订单扣款记录
|
||||
// @Param token header string true "认证token"
|
||||
|
||||
Reference in New Issue
Block a user