|
|
|
@ -15,6 +15,7 @@ import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description :
|
|
|
|
@ -74,16 +75,21 @@ public class BfElement extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "数据对象")
|
|
|
|
|
@AnnoOutputColumn(hidden = true)
|
|
|
|
|
private BfDataObject dataObject;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "元素表单")
|
|
|
|
|
@AnnoOutputColumn(hidden = true)
|
|
|
|
|
private BfElementGrid elementGrid;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "元素树")
|
|
|
|
|
@AnnoOutputColumn(hidden = true)
|
|
|
|
|
private BfElementTree elementTree;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "元素属性信息")
|
|
|
|
|
private List<BfElementProperty> propertyList;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "元素虚拟属性信息")
|
|
|
|
|
private List<BfElementPropertyVirtual> propertyVirtualList;
|
|
|
|
|
}
|
|
|
|
|