From 2f38b2341e1572502fd6b4510670107f57ed261c Mon Sep 17 00:00:00 2001 From: jiangqs <343695869@qq.com> Date: 星期五, 18 八月 2023 23:05:34 +0800 Subject: [PATCH] Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/java/HongRuiTang --- ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/poji/sys/SysDept.java | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/poji/sys/SysDept.java b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/poji/sys/SysDept.java index 7d75726..f5e1dd7 100644 --- a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/poji/sys/SysDept.java +++ b/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(); } } -- Gitblit v1.7.1