Pre Merge pull request !220 from Mr.Gong/N/A
This commit is contained in:
commit
a1beb1ea22
|
|
@ -48,9 +48,6 @@ public class SysDept extends BaseEntity
|
|||
|
||||
/** 删除标志(0代表存在 2代表删除) */
|
||||
private String delFlag;
|
||||
|
||||
/** 父部门名称 */
|
||||
private String parentName;
|
||||
|
||||
/** 子部门 */
|
||||
private List<SysDept> children = new ArrayList<SysDept>();
|
||||
|
|
@ -161,16 +158,6 @@ public class SysDept extends BaseEntity
|
|||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public String getParentName()
|
||||
{
|
||||
return parentName;
|
||||
}
|
||||
|
||||
public void setParentName(String parentName)
|
||||
{
|
||||
this.parentName = parentName;
|
||||
}
|
||||
|
||||
public List<SysDept> getChildren()
|
||||
{
|
||||
return children;
|
||||
|
|
|
|||
Loading…
Reference in New Issue