查找退费账单
This commit is contained in:
@@ -27,3 +27,19 @@ func (c *BiddingController) GetBiddingMsg() {
|
||||
return retVal, "", err
|
||||
})
|
||||
}
|
||||
|
||||
// 获取退货账单
|
||||
// @Title 获取招标信息
|
||||
// @Description 获取招标信息
|
||||
// @Param token header string true "认证token"
|
||||
// @Param brandId query int true "品牌"
|
||||
// @Param start query string true "开始时间"
|
||||
// @Success 200 {object} controllers.CallResult
|
||||
// @Failure 200 {object} controllers.CallResult
|
||||
// @router /GetRefundOrderList [get]
|
||||
func (c *BiddingController) GetRefundOrderList() {
|
||||
c.callGetRefundOrderList(func(params *tBindGetRefundOrderListParams) (interface{}, string, error) {
|
||||
data, err := bidding.GetBrandPayOrder(params.BrandId, params.Start)
|
||||
return data, "", err
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user