|
@@ -1014,6 +1014,7 @@ public class CustomExcelImportUtil {
|
|
|
record.setIsFinancing(row.getCell(22).getStringCellValue().trim().equals("是")?1:0);
|
|
|
record.setFinancingNo(row.getCell(23).getStringCellValue().trim());
|
|
|
record.setNo(row.getCell(24).getStringCellValue().trim());
|
|
|
+ record.setRemark2(row.getCell(25).getStringCellValue().trim());
|
|
|
} catch (Exception e) {
|
|
|
error.append(index).append(",");
|
|
|
}
|
|
@@ -1082,11 +1083,12 @@ public class CustomExcelImportUtil {
|
|
|
record.setColor(row.getCell(17).getStringCellValue().trim().equals("是")?1:0);
|
|
|
record.setSbdh(row.getCell(18).getStringCellValue().trim());
|
|
|
record.setZbh(row.getCell(19).getStringCellValue().trim());
|
|
|
- record.setRemark(row.getCell(20).getStringCellValue().trim());
|
|
|
- record.setSeatNumber(Double.valueOf(row.getCell(21).getStringCellValue()).intValue());
|
|
|
- record.setIsFinancing(row.getCell(22).getStringCellValue().trim().equals("是")?1:0);
|
|
|
- record.setFinancingNo(row.getCell(23).getStringCellValue().trim());
|
|
|
- record.setNo(row.getCell(24).getStringCellValue().trim());
|
|
|
+ record.setSeatNumber(Double.valueOf(row.getCell(20).getStringCellValue()).intValue());
|
|
|
+ record.setIsFinancing(row.getCell(21).getStringCellValue().trim().equals("是")?1:0);
|
|
|
+ record.setFinancingNo(row.getCell(22).getStringCellValue().trim());
|
|
|
+ record.setNo(row.getCell(23).getStringCellValue().trim());
|
|
|
+ record.setRemark(row.getCell(24).getStringCellValue().trim());
|
|
|
+ record.setRemark2(row.getCell(25).getStringCellValue().trim());
|
|
|
} catch (Exception e) {
|
|
|
error.append(index).append(",");
|
|
|
}
|