dev
luotaiqian 2026-08-03 17:58:11 +08:00
parent fbdaf64a59
commit a439eb098a
1 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,6 @@
package org.qinan.safetyeval.app.support;
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
@ -72,14 +73,18 @@ public class OrgPersonnelImportRow {
private String abilityDeclaration;
/** EasyExcel 解析时记录的物理行号从1开始含表头由导入器填充。 */
@ExcelIgnore
private Integer rowIndex;
/** 校验通过后回填的部门ID非Excel列。 */
@ExcelIgnore
private Long deptId;
/** 校验通过后回填的岗位ID非Excel列。 */
@ExcelIgnore
private Long postId;
/** 校验通过后回填的学科基础专业对照表ID非Excel列。 */
@ExcelIgnore
private Long basicDisciplineMajorId;
}