@Override
public void exportNbCardVo(List<NbCardVo> nbCardVoList, HttpServletResponse response) throws CodeException {
BigExcelWriter bigExcelWriter = null;
try {
String fileName = URLEncoder.encode("nb卡批量导出.xlsx", StandardCharsets.UTF_8.toString());
response.addHeader("Content-Disposition", "attachment;filename=" + fileName);
bigExcelWriter = new BigExcelWriter(nbCardVoList.size()+1);
List<List<String>> rows = new ArrayList<>();
List<String> title = CollUtil.newArrayList(
"序号",
"电话卡号",
"项目名称",
"创建时间");
rows.add(title);
Strin