| | |
| | |
|
| | | /** 父部门名称 */
|
| | | private String parentName;
|
| | | |
| | |
|
| | | /** 部门编号 */
|
| | | private String deptNick;
|
| | |
|
| | | private Long tenantId;
|
| | |
|
| | | public Long getTenantId() {
|
| | | return tenantId;
|
| | | }
|
| | |
|
| | | public void setTenantId(Long tenantId) {
|
| | | this.tenantId = tenantId;
|
| | | }
|
| | |
|
| | | /** 子部门 */
|
| | | private List<SysDept> children = new ArrayList<SysDept>();
|
| | |
|
| | |
| | | this.children = children;
|
| | | }
|
| | |
|
| | | public String getDeptNick() {
|
| | | return deptNick;
|
| | | }
|
| | |
|
| | | public void setDeptNick(String deptNick) {
|
| | | this.deptNick = deptNick;
|
| | | }
|
| | |
|
| | | @Override
|
| | | public String toString() {
|
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|