@@ -134,6 +134,9 @@ public class TextdictInfoServiceImpl extends ServiceImpl<TextdictInfoMapper, Tex
}else{
textdict = baseMapper.selectTextdictInfoPage(page, textdictInfo);
}
+ if (textdict != null) {
+ textdict.removeIf(textdictInfoVO -> textdictInfoVO.getColKey() == null || textdictInfoVO.getColKey().isEmpty());
+ }
return page.setRecords(textdict);