|
|
@@ -54,6 +54,8 @@ public class GoodsDonController {
|
|
|
SearchResult<GoodsDon> search = beanSearcher.search(GoodsDon.class, MapUtils.flatBuilder(request.getParameterMap())
|
|
|
.field(GoodsDon::getStatus, true)
|
|
|
.field(GoodsDon::getDeleted, true)
|
|
|
+ .orderBy(GoodsDon::getSortBy).desc()
|
|
|
+ .orderBy(GoodsDon::getId).asc()
|
|
|
.build()
|
|
|
);
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(search);
|