Quellcode durchsuchen

按创建时间 降序

tags/24080901
PoffyZhang vor 1 Jahr
Ursprung
Commit
72e54b2125
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. +2
    -1
      pmapi/src/main/java/com/ningdatech/pmapi/gov/manage/GovProjectCollectionManage.java

+ 2
- 1
pmapi/src/main/java/com/ningdatech/pmapi/gov/manage/GovProjectCollectionManage.java Datei anzeigen

@@ -80,7 +80,8 @@ public class GovProjectCollectionManage {

List<GovProjectDictionary> dictionaries = dictionaryService.list(Wrappers.lambdaQuery(GovProjectDictionary.class)
.eq(StringUtils.isNotBlank(type), GovProjectDictionary::getType, type)
.eq(GovProjectDictionary::getDeleted,Boolean.FALSE));
.eq(GovProjectDictionary::getDeleted,Boolean.FALSE)
.orderByDesc(GovProjectDictionary::getCreateOn));

if(CollUtil.isEmpty(dictionaries)){
return Collections.emptyList();


Laden…
Abbrechen
Speichern