|
|
@ -16,6 +16,8 @@ public class Dept extends BaseVM implements Serializable { |
|
|
|
|
|
|
|
private String nodeType; |
|
|
|
|
|
|
|
private String orgtypecode; |
|
|
|
|
|
|
|
private boolean leaf; |
|
|
|
|
|
|
|
public Integer getId() { |
|
|
@ -50,6 +52,13 @@ public class Dept extends BaseVM implements Serializable { |
|
|
|
this.nodeType = nodeType; |
|
|
|
} |
|
|
|
|
|
|
|
public String getOrgtypecode() { |
|
|
|
return orgtypecode; |
|
|
|
} |
|
|
|
public void setOrgtypecode(String orgtypecode) { |
|
|
|
this.orgtypecode = orgtypecode; |
|
|
|
} |
|
|
|
|
|
|
|
public boolean isLeaf() { |
|
|
|
return leaf; |
|
|
|
} |
|
|
|