get orders
This commit is contained in:
@@ -57,3 +57,18 @@ func (c *OrderController) CreateOrder() {
|
||||
return retVal, "", err
|
||||
})
|
||||
}
|
||||
|
||||
// @Title 查询订单提现申请
|
||||
// @Description 查询订单提现申请
|
||||
// @Param token header string true "认证token"
|
||||
// @Param orderID query string false "订单号"
|
||||
// @Param orderType query int false "订单类型,1为支付,2为提现"
|
||||
// @Param keyword query string false "关键字"
|
||||
// @Success 200 {object} controllers.CallResult
|
||||
// @Failure 200 {object} controllers.CallResult
|
||||
// @router /GetOrders [get]
|
||||
func (c *OrderController) GetOrders() {
|
||||
c.callGetOrders(func(params *tOrderGetOrdersParams) (retVal interface{}, errCode string, err error) {
|
||||
return retVal, "", err
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user