| | |
| | | private String loadType; |
| | | |
| | | /** |
| | | * 是否反向 |
| | | * 是否反向,TODO:树定义上已经没有使用这个字段了(但是为了兼容以前的UI配置所以需要保留) |
| | | */ |
| | | private boolean orientation = false; |
| | | private String orientation; |
| | | |
| | | /** |
| | | * 显示图标 |
| | |
| | | this.loadType = loadType; |
| | | } |
| | | |
| | | public boolean isOrientation() { |
| | | public String getOrientation() { |
| | | return orientation; |
| | | } |
| | | |
| | | public void setOrientation(boolean orientation) { |
| | | public void setOrientation(String orientation) { |
| | | this.orientation = orientation; |
| | | } |
| | | |
| | |
| | | return "UITreeDefineVO{" + |
| | | "btmType='" + btmType + '\'' + |
| | | ", loadType='" + loadType + '\'' + |
| | | ", orientation=" + orientation + |
| | | ", showImage=" + showImage + |
| | | ", rootContent='" + rootContent + '\'' + |
| | | ", linkType='" + linkType + '\'' + |