bug
jiangqs
2023-08-25 156e141e55a8abf486157d1fa89d25e23f4a06a3
ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/poji/sys/SysDept.java
@@ -66,6 +66,9 @@
    /** 菜单组 */
    private Long[] staffMenuIds;
    /** 微信部门id */
    private Long wxDeptId;
    public Long getDeptId()
    {
        return deptId;
@@ -216,6 +219,14 @@
        this.staffMenuIds = staffMenuIds;
    }
    public Long getWxDeptId() {
        return wxDeptId;
    }
    public void setWxDeptId(Long wxDeptId) {
        this.wxDeptId = wxDeptId;
    }
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -234,6 +245,7 @@
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("dataScope", getDataScope())
            .append("wxDeptId", getWxDeptId())
            .toString();
    }
}