package com.vci.pagemodel;
|
|
/**
|
* 树的配置
|
* @author weidy
|
* @date 2021/2/15
|
*/
|
public class UITreeDefineVO implements java.io.Serializable {
|
|
/**
|
* 序列化
|
*/
|
private static final long serialVersionUID = -3615819063395124270L;
|
/**
|
* 业务类型
|
*/
|
private String btmType;
|
|
/**
|
* 加载方式
|
*/
|
private String loadType;
|
|
/**
|
* 是否反向,TODO:树定义上已经没有使用这个字段了(但是为了兼容以前的UI配置所以需要保留)
|
*/
|
private String orientation;
|
|
/**
|
* 显示图标
|
*/
|
private boolean showImage = false;
|
|
/**
|
* 根节点显示表达式,比如 ${name} [${revisionvalue}.${versionvalue}]
|
*/
|
private String rootContent;
|
|
/**
|
* 链接类型
|
*/
|
private String linkType;
|
|
/**
|
* 分隔符
|
*/
|
private String fieldSep = ",";
|
|
/**
|
* 查询模板的名称
|
*/
|
private String queryTemplateName;
|
|
/**
|
* 树节点表达式,比如 ${t_oid.name} [${t_oid.revisionvalue}]
|
*/
|
private String treeNodeExpression;
|
|
/**
|
* 是链接
|
*/
|
private String showLinkAbs;
|
|
public String getBtmType() {
|
return btmType;
|
}
|
|
public void setBtmType(String btmType) {
|
this.btmType = btmType;
|
}
|
|
public String getLoadType() {
|
return loadType;
|
}
|
|
public void setLoadType(String loadType) {
|
this.loadType = loadType;
|
}
|
|
public String getOrientation() {
|
return orientation;
|
}
|
|
public void setOrientation(String orientation) {
|
this.orientation = orientation;
|
}
|
|
public boolean isShowImage() {
|
return showImage;
|
}
|
|
public void setShowImage(boolean showImage) {
|
this.showImage = showImage;
|
}
|
|
public String getRootContent() {
|
return rootContent;
|
}
|
|
public void setRootContent(String rootContent) {
|
this.rootContent = rootContent;
|
}
|
|
public String getLinkType() {
|
return linkType;
|
}
|
|
public void setLinkType(String linkType) {
|
this.linkType = linkType;
|
}
|
|
public String getFieldSep() {
|
return fieldSep;
|
}
|
|
public void setFieldSep(String fieldSep) {
|
this.fieldSep = fieldSep;
|
}
|
|
public String getQueryTemplateName() {
|
return queryTemplateName;
|
}
|
|
public void setQueryTemplateName(String queryTemplateName) {
|
this.queryTemplateName = queryTemplateName;
|
}
|
|
public String getTreeNodeExpression() {
|
return treeNodeExpression;
|
}
|
|
public void setTreeNodeExpression(String treeNodeExpression) {
|
this.treeNodeExpression = treeNodeExpression;
|
}
|
|
public String getShowLinkAbs() {
|
return showLinkAbs;
|
}
|
|
public void setShowLinkAbs(String showLinkAbs) {
|
this.showLinkAbs = showLinkAbs;
|
}
|
|
@Override
|
public String toString() {
|
return "UITreeDefineVO{" +
|
"btmType='" + btmType + '\'' +
|
", loadType='" + loadType + '\'' +
|
", showImage=" + showImage +
|
", rootContent='" + rootContent + '\'' +
|
", linkType='" + linkType + '\'' +
|
", fieldSep='" + fieldSep + '\'' +
|
", queryTemplateName='" + queryTemplateName + '\'' +
|
", treeNodeExpression='" + treeNodeExpression + '\'' +
|
", showLinkAbs='" + showLinkAbs + '\'' +
|
'}';
|
}
|
}
|