查找退费账单

This commit is contained in:
邹宗楠
2022-07-18 15:33:55 +08:00
parent 1bf08e8933
commit 15b3813bd2
5 changed files with 103 additions and 0 deletions

View File

@@ -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
})
}