|
@@ -32,7 +32,6 @@ import org.springblade.manager.service.ISignConfigService;
|
|
|
import org.springblade.manager.service.ITextdictInfoService;
|
|
|
import org.springblade.manager.utils.FileUtils;
|
|
|
import org.springblade.manager.vo.TextdictInfoVO;
|
|
|
-import org.springframework.context.annotation.Lazy;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
@@ -79,7 +78,7 @@ public class TextdictInfoServiceImpl extends ServiceImpl<TextdictInfoMapper, Tex
|
|
|
if(Func.isNotEmpty(textdictInfo.getShowType()) && textdictInfo.getShowType() == 1){
|
|
|
if(Func.isNotEmpty(dqid) && dqid.size() > 0){
|
|
|
textdict = baseMapper.selectTextdictBYIds(dqid,privateInfo.getProjectId());
|
|
|
- if (textdict != null) {
|
|
|
+ if (textdict != null && !textdict.isEmpty()) {
|
|
|
for (TextdictInfoVO vo : textdict) {
|
|
|
keys.remove(vo.getColKey());
|
|
|
}
|