|
|
@@ -865,7 +865,6 @@ type QueryTradePayOrdersReq struct {
|
|
|
// @Param page query int false "页码"
|
|
|
// @Param pagesize query int false "每页条数"
|
|
|
// @Param accountIDs query string true "资金账户列表,格式:1,2,3"
|
|
|
-// @Param buyOrderID query int false "买方委托单号"
|
|
|
// @Success 200 {object} models.HsbyBuyMyPayOrder
|
|
|
// @Failure 500 {object} app.Response
|
|
|
// @Router /HSBY/QueryTradePayOrders [get]
|
|
|
@@ -892,7 +891,7 @@ func QueryTradePayOrders(c *gin.Context) {
|
|
|
|
|
|
// 排序
|
|
|
sort.Slice(orders, func(i int, j int) bool {
|
|
|
- return orders[i].Createtime.Before(orders[j].Createtime)
|
|
|
+ return orders[i].Createtime.After(orders[j].Createtime)
|
|
|
})
|
|
|
|
|
|
// 分页
|