| | |
| | | /** 数据范围(1:所有数据权限;2:自定义数据权限;3:本部门数据权限;4:本部门及以下数据权限;5:仅本人数据权限) */ |
| | | @Excel(name = "数据范围", readConverterExp = "1=所有数据权限,2=自定义数据权限,3=本部门数据权限,4=本部门及以下数据权限,5=仅本人数据权限") |
| | | private String dataScope; |
| | | /**员工端数据范围(1:所有数据权限;2:自定义数据权限;3:本部门数据权限;4:本部门及以下数据权限;5:仅本人数据权限)*/ |
| | | private String dataScopeEmployee; |
| | | |
| | | /** 子部门 */ |
| | | private List<SysDept> children = new ArrayList<SysDept>(); |
| | |
| | | |
| | | /** 菜单组 */ |
| | | private Long[] staffMenuIds; |
| | | |
| | | /** 微信部门id */ |
| | | private Long wxDeptId; |
| | | |
| | | public Long getDeptId() |
| | | { |
| | |
| | | this.staffMenuIds = staffMenuIds; |
| | | } |
| | | |
| | | public Long getWxDeptId() { |
| | | return wxDeptId; |
| | | } |
| | | |
| | | public void setWxDeptId(Long wxDeptId) { |
| | | this.wxDeptId = wxDeptId; |
| | | } |
| | | |
| | | public String getDataScopeEmployee() { |
| | | return dataScopeEmployee; |
| | | } |
| | | |
| | | public void setDataScopeEmployee(String dataScopeEmployee) { |
| | | this.dataScopeEmployee = dataScopeEmployee; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("dataScope", getDataScope()) |
| | | .append("wxDeptId", getWxDeptId()) |
| | | .append("dataScopeEmployee", getDataScopeEmployee()) |
| | | .toString(); |
| | | } |
| | | } |