|
@@ -69,6 +69,8 @@ public class DictionaryManagementFacade {
|
|
|
*/
|
|
|
public IPage<DictionaryInfo> getDictionary(GetDictionaryVO getDictionaryVO) {
|
|
|
IPage<DictionaryInfo> pageInfo = new Page();
|
|
|
+ pageInfo.setCurrent(getDictionaryVO.getCurrent());
|
|
|
+ pageInfo.setSize(getDictionaryVO.getSize());
|
|
|
LambdaQueryChainWrapper<DictionaryInfo> dictionaryInfoLambdaQuery = dictionaryInfoFacade.lambdaQuery();
|
|
|
dictionaryInfoLambdaQuery.eq(DictionaryInfo::getIsDeleted, IsDeleteEnum.N.getKey());
|
|
|
if (StringUtil.isNotEmpty(getDictionaryVO.getName())) {
|