|
|
|
@ -42,16 +42,28 @@ public class BfElementTree extends BaseBean {
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long treeParentId;
|
|
|
|
|
|
|
|
|
|
@Column(name = "TREE_PARENT_RDD")
|
|
|
|
|
@ApiParam(value = "父级属性ID")
|
|
|
|
|
private String treeParentRdd;
|
|
|
|
|
|
|
|
|
|
@Column(name = "TREE_ATTR_NAME_ID")
|
|
|
|
|
@ApiParam(value = "显示属性ID")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long treeAttrNameId;
|
|
|
|
|
|
|
|
|
|
@Column(name = "TREE_ATTR_NAME_RDD")
|
|
|
|
|
@ApiParam(value = "显示属性ID")
|
|
|
|
|
private String treeAttrNameRdd;
|
|
|
|
|
|
|
|
|
|
@Column(name = "TREE_ATTR_VALUE_ID")
|
|
|
|
|
@ApiParam(value = "取值属性ID")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long treeAttrValueId;
|
|
|
|
|
|
|
|
|
|
@Column(name = "TREE_ATTR_VALUE_RDD")
|
|
|
|
|
@ApiParam(value = "取值属性ID")
|
|
|
|
|
private String treeAttrValueRdd;
|
|
|
|
|
|
|
|
|
|
@Column(name="TREE_IS_OPEN_ALL")
|
|
|
|
|
@ApiParam(value ="是否全部展开")
|
|
|
|
|
private Integer treeIsOpenAll;
|
|
|
|
|