|
|
|
@ -38,6 +38,10 @@ public class BfElementPropertyVirtual extends BaseBean {
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long elementId;
|
|
|
|
|
|
|
|
|
|
@Column(name="PROPERTY_CODE")
|
|
|
|
|
@ApiParam(value ="类属性名称")
|
|
|
|
|
private String propertyCode;
|
|
|
|
|
|
|
|
|
|
@Column(name="PROPERTY_NAME")
|
|
|
|
|
@ApiParam(value ="元素名称")
|
|
|
|
|
private String propertyName;
|
|
|
|
@ -71,6 +75,10 @@ public class BfElementPropertyVirtual extends BaseBean {
|
|
|
|
|
private List<BfElementProperty> propertyList;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "虚拟属性列表")
|
|
|
|
|
private List<BfRefElementPropertyVirtualDetail> detailList;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "虚拟属性ID列表")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private List<Long> propertyIdList;
|
|
|
|
|