This commit is contained in:
邹宗楠
2023-06-01 10:55:02 +08:00
parent 6add9ca9ee
commit f38c6bcc4b
4 changed files with 37 additions and 0 deletions

View File

@@ -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"