测量数据倒序排列
This commit is contained in:
		| @@ -3,6 +3,7 @@ package com.xkrs.util; | ||||
| import com.xkrs.dao.DataSourceDao; | ||||
| import com.xkrs.model.entity.DataSource; | ||||
| import org.apache.http.util.TextUtils; | ||||
| import org.springframework.data.domain.Sort; | ||||
| import org.springframework.data.jpa.domain.Specification; | ||||
| import org.springframework.stereotype.Component; | ||||
|  | ||||
| @@ -50,6 +51,6 @@ public class DataSourceQuery { | ||||
|             Predicate[] predicates = new Predicate[list.size()]; | ||||
|             return criteriaBuilder.and(list.toArray(predicates)); | ||||
|         }; | ||||
|         return dataSourceDao.findAll(specification); | ||||
|         return dataSourceDao.findAll(specification, Sort.by(Sort.Direction.DESC, "id")); | ||||
|     } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user