SysDept 去除parentName字段

This commit is contained in:
programgsq 2022-07-22 08:01:55 +00:00 committed by Gitee
parent fb35360f81
commit 0959955ca4
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 0 additions and 13 deletions

View File

@ -48,9 +48,6 @@ public class SysDept extends BaseEntity
/** 删除标志0代表存在 2代表删除 */ /** 删除标志0代表存在 2代表删除 */
private String delFlag; private String delFlag;
/** 父部门名称 */
private String parentName;
/** 子部门 */ /** 子部门 */
private List<SysDept> children = new ArrayList<SysDept>(); private List<SysDept> children = new ArrayList<SysDept>();
@ -161,16 +158,6 @@ public class SysDept extends BaseEntity
this.delFlag = delFlag; this.delFlag = delFlag;
} }
public String getParentName()
{
return parentName;
}
public void setParentName(String parentName)
{
this.parentName = parentName;
}
public List<SysDept> getChildren() public List<SysDept> getChildren()
{ {
return children; return children;