src/main/java/com/lf/server/service/sys/ReportService.java
@@ -98,12 +98,13 @@ return; } int rows = 1; String inputFile = "D:\\LF\\用户流量统计.docx"; String outPutFile = "D:\\LF\\用户流量统计_new.docx"; ArrayList<String[]> addList = new ArrayList<>(); for (CountEntity ce : list) { String[] strs = new String[]{ce.getM1(), ce.getM2(), ce.getCount().toString()}; String[] strs = new String[]{"" + rows++, ce.getM1(), ce.getM2(), ce.getCount().toString()}; addList.add(strs); }