Compare commits
No commits in common. "2c342eb0877e0bb044c783c677c1a59511156899" and "ef790fd82c3b0bf197d1a681967a2769ad0e14cf" have entirely different histories.
2c342eb087
...
ef790fd82c
|
@ -2980,7 +2980,7 @@ public class ResourceServiceImpl extends CrudServiceImpl<ResourceDao, ResourceEn
|
|||
List result = new ArrayList();
|
||||
|
||||
if (!params.containsKey("type") ||
|
||||
(params.containsKey("type") && org.apache.commons.lang3.StringUtils.isEmpty(params.get("type") != null ? params.get("type").toString() : null))
|
||||
(params.containsKey("type") && org.apache.commons.lang3.StringUtils.isNotEmpty(params.get("type") != null ? params.get("type").toString() : null))
|
||||
) { //查所有
|
||||
int total = 0;
|
||||
List<Map> ucsApplyDtoList = resourceDao.selectCensusApplyTable(params);
|
||||
|
|
Loading…
Reference in New Issue