ludc
2025-01-16 68fd566d21b3efc3a670a5295289b1801f5a4155
Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/pagemodel/OrgDepartmentVO.java
@@ -22,7 +22,7 @@
    /**
     * 除部门主键外的唯一标识,长度为8位,可通过该参数反推回部门主键;主要用于导入部门时使用
     */
    private String uniqueId;
    //private String uniqueId;
    /**
     * 部门名称
@@ -99,7 +99,34 @@
     */
    private String tel;
    /**
     * 部门名称组成的全路径:dept1/dept2/dept3
     */
    private String fullDeptNamePath;
    /**
     * 部门层级
     */
    private int treelevel;
    public OrgDepartmentVO() {
    }
    public OrgDepartmentVO(String id, String name, Short status, String fullDeptNamePath, int treelevel) {
        this.id = id;
        this.name = name;
        this.status = status;
        this.fullDeptNamePath = fullDeptNamePath;
        this.treelevel = treelevel;
    }
    public String getFullDeptNamePath() {
        return fullDeptNamePath;
    }
    public void setFullDeptNamePath(String fullDeptNamePath) {
        this.fullDeptNamePath = fullDeptNamePath;
    }
    public String getCode() {
        return code;
@@ -133,13 +160,13 @@
        return statusText;
    }
    public String getUniqueId() {
    /*public String getUniqueId() {
        return uniqueId;
    }
    }*/
    public void setUniqueId(String uniqueId) {
    /*public void setUniqueId(String uniqueId) {
        this.uniqueId = uniqueId;
    }
    }*/
    @Override
    public String getId() {