Commit c74545eb authored by 廖旭伟's avatar 廖旭伟

基础设置展示应用排序

parent 976770f7
...@@ -40,6 +40,9 @@ public class SstAppsServiceImpl extends AbstractCRUDServiceImpl<SstAppsDao, SstA ...@@ -40,6 +40,9 @@ public class SstAppsServiceImpl extends AbstractCRUDServiceImpl<SstAppsDao, SstA
appsInfoQuery.setSiteId(siteId); appsInfoQuery.setSiteId(siteId);
List<AppsInfoEntity> allApps = appsInfoService.find(appsInfoQuery); List<AppsInfoEntity> allApps = appsInfoService.find(appsInfoQuery);
SstAppsEntity query = new SstAppsEntity(); SstAppsEntity query = new SstAppsEntity();
Map<String,String> orderCols = new HashMap<>();
orderCols.put("basicSort","DESC");
query.setOrderCols(orderCols);
query.setSiteId(siteId); query.setSiteId(siteId);
List<SstAppsEntity> appsEntities = this.find(query); List<SstAppsEntity> appsEntities = this.find(query);
Map<String, Object> siteApp = new HashMap<>(); Map<String, Object> siteApp = new HashMap<>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment