Browse Source

solve bug

release_toaliyun_real
xhxu 5 years ago
parent
commit
a85091208c
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      mallinkService/src/main/java/com/iformall/service/impl/WxQuestionOneselfUserServiceImpl.java

+ 2
- 2
mallinkService/src/main/java/com/iformall/service/impl/WxQuestionOneselfUserServiceImpl.java View File

@@ -179,7 +179,7 @@ public class WxQuestionOneselfUserServiceImpl implements WxQuestionOneselfUserSe

WxQuestionOneselfTopic topicQ = new WxQuestionOneselfTopic();
topicQ.updateTenantInfo(record);
topicQ.setQuestionId(record.getId());
topicQ.setQuestionId(record.getQuestionId());
List<WxQuestionOneselfTopic> topicList = wxQuestionOneselfTopicMapper.findList(topicQ);

if(topicList != null && topicList.size() > 0){
@@ -208,7 +208,7 @@ public class WxQuestionOneselfUserServiceImpl implements WxQuestionOneselfUserSe
dataList.add(map);
}
}
excelService.exportExcel(headList,dataList, null, "ceshi", "ceshi.xlsx", true,response );
excelService.exportExcel(headList,dataList, null, "问卷", "问卷结果.xlsx", true,response );
}

@Override


Loading…
Cancel
Save