Commit c8bcdd34 by 陶光胜

通过手机号查询过滤运营人员,限制取消

parent e59f5962
...@@ -127,7 +127,8 @@ public class ExcelUtils { ...@@ -127,7 +127,8 @@ public class ExcelUtils {
public static List<Map<Integer, String>> readXlsx(Workbook xssfWorkbook, int row, Map<Integer, Boolean> dateTypeMap) { public static List<Map<Integer, String>> readXlsx(Workbook xssfWorkbook, int row, Map<Integer, Boolean> dateTypeMap) {
List<Map<Integer, String>> result = new ArrayList<Map<Integer, String>>(); List<Map<Integer, String>> result = new ArrayList<Map<Integer, String>>();
SimpleDateFormat format = new SimpleDateFormat(Constants.DATE_FORMAT); String DATE_FORMAT = "yyyy-MM-dd HH:mm:ss";
SimpleDateFormat format = new SimpleDateFormat(DATE_FORMAT);
// XSSFWorkbook xssfWorkbook = new XSSFWorkbook(in); // XSSFWorkbook xssfWorkbook = new XSSFWorkbook(in);
for (int numSheet = 0; numSheet < 1; numSheet++) { for (int numSheet = 0; numSheet < 1; numSheet++) {
Sheet xssfSheet = xssfWorkbook.getSheetAt(numSheet); Sheet xssfSheet = xssfWorkbook.getSheetAt(numSheet);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment