Commit c9352d0a authored by fangxinjiang's avatar fangxinjiang

区域-fxj

parent f8c86a4d
...@@ -220,6 +220,7 @@ public class TPreEmployeeInfo extends BaseEntity { ...@@ -220,6 +220,7 @@ public class TPreEmployeeInfo extends BaseEntity {
@ExcelAttribute(name = "档案-市") @ExcelAttribute(name = "档案-市")
@ExcelProperty("档案-市") @ExcelProperty("档案-市")
@Schema(description = "档案-市") @Schema(description = "档案-市")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private Integer fileCity; private Integer fileCity;
/** /**
* 档案-县 * 档案-县
......
...@@ -1967,6 +1967,8 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T ...@@ -1967,6 +1967,8 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
} }
if (Common.isNotNull(excel.getFileTown())) { if (Common.isNotNull(excel.getFileTown())) {
saveEmp.setFileTown(Integer.parseInt(excel.getFileTown())); saveEmp.setFileTown(Integer.parseInt(excel.getFileTown()));
}else {
saveEmp.setFileTown(null);
} }
// 邮箱 // 邮箱
if (Common.isNotNull(excel.getEmpEmail())) { if (Common.isNotNull(excel.getEmpEmail())) {
......
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