|
|
|
@ -79,9 +79,10 @@ public class DataEaseModel {
|
|
|
|
|
String value = row.getData().get(j);
|
|
|
|
|
//第一行是表头
|
|
|
|
|
String colName = listExcelRow.getFirst().getData().get(j);
|
|
|
|
|
if (colName.equals("行政区划")) {
|
|
|
|
|
|
|
|
|
|
if (identity_id == 2 && colName.equals("行政区划")) {
|
|
|
|
|
record.set(colName, area_name);
|
|
|
|
|
} else if (colName.equals("上级行政区划")) {
|
|
|
|
|
} else if (identity_id == 2 && colName.equals("上级行政区划")) {
|
|
|
|
|
record.set(colName, parent_area_name);
|
|
|
|
|
} else {
|
|
|
|
|
if (StrKit.isBlank(value)) {
|
|
|
|
|