变量判空

master
wujj 5 years ago
parent d16a5ceac5
commit 28269bbfd2
  1. 2
      src/main/java/net/mingsoft/cms/action/GeneraterAction.java

@ -243,7 +243,7 @@ public class GeneraterAction extends BaseAction {
map.put(ParserUtil.HTML, ParserUtil.HTML);
map.put(ParserUtil.URL, BasicUtil.getUrl());
map.put(ParserUtil.PAGE, page);
if(Integer.parseInt(columnId) == 0){
if(StringUtils.isNotEmpty(columnId)){
CategoryEntity categoryEntity = new CategoryEntity();
categoryList = categoryBiz.query(categoryEntity);
for(CategoryEntity category : categoryList){

Loading…
Cancel
Save