| | |
| | | private String modeType; |
| | | |
| | | /** |
| | | * 功能类型:0:功能菜单节点,1:分类,3:按钮 |
| | | */ |
| | | private int functionType; |
| | | |
| | | /** |
| | | * 是模块下子对象是模块还是操作:0表示无子节点,1表示是模块,2表示是操作 |
| | | */ |
| | | private Integer childType; |
| | |
| | | return funcId; |
| | | } |
| | | |
| | | public void setFunctionType(int functionType) { |
| | | this.functionType = functionType; |
| | | } |
| | | |
| | | public void setValid(Boolean valid) { |
| | | isValid = valid; |
| | | } |
| | | |
| | | public void setHavePermission(Integer havePermission) { |
| | | this.havePermission = havePermission; |
| | | } |
| | | |
| | | public int getFunctionType() { |
| | | return functionType; |
| | | } |
| | | |
| | | public Boolean getValid() { |
| | | return isValid; |
| | | } |
| | | |
| | | public Integer getHavePermission() { |
| | | return havePermission; |
| | | } |
| | | |
| | | public String getOperId() { |
| | | return operId; |
| | | } |