feat: 企标部门权限导入

This commit is contained in:
2023-12-04 15:02:28 +08:00
parent d14e911b0c
commit 1d2b568cdc
2 changed files with 72 additions and 21 deletions
@@ -33,11 +33,23 @@ public class ESAuthDept {
@ApiModelProperty(value = "标准分类")
private String standardType;
@Excel(name = "旧上级组织")
@ApiModelProperty(value = "上级组织")
private String oldHigherDeptName;
@Excel(name = "旧组织部门")
@ApiModelProperty(value = "组织部门")
private String oldDeptName;
@Excel(name = "再上一级组织(部分存在)")
@ApiModelProperty(value = "再上一级组织(部分存在)")
private String higherHigherDeptName;
@Excel(name = "上级组织")
@ApiModelProperty(value = "上级组织")
private String higherDeptName;
@Excel(name = "组织部门")
@Excel(name = "部门")
@ApiModelProperty(value = "组织部门")
private String deptName;
@@ -51,6 +63,9 @@ public class ESAuthDept {
standardNumber == null &&
standardName == null &&
standardType == null &&
oldHigherDeptName == null &&
oldDeptName == null &&
higherHigherDeptName == null &&
higherDeptName == null &&
deptName == null;
}