|
@@ -77,6 +77,9 @@ public class DictionaryManagementFacade {
|
|
|
if (null != getDictionaryVO.getGroupType()) {
|
|
|
dictionaryInfoLambdaQuery.like(DictionaryInfo::getGroupType, getDictionaryVO.getGroupType());
|
|
|
}
|
|
|
+ if (null != getDictionaryVO.getId()) {
|
|
|
+ dictionaryInfoLambdaQuery.eq(DictionaryInfo::getId, getDictionaryVO.getId());
|
|
|
+ }
|
|
|
dictionaryInfoLambdaQuery.orderByDesc(DictionaryInfo::getGmtCreate);
|
|
|
IPage<DictionaryInfo> page = dictionaryInfoLambdaQuery.page(pageInfo);
|
|
|
page.getRecords().forEach(obj -> {
|