|
@@ -63,7 +63,7 @@ public class ComponentSimpleInfo implements Serializable {
|
|
|
*/
|
|
*/
|
|
|
@OneToMany(cascade = { CascadeType.PERSIST, CascadeType.REMOVE }, fetch = FetchType.LAZY)
|
|
@OneToMany(cascade = { CascadeType.PERSIST, CascadeType.REMOVE }, fetch = FetchType.LAZY)
|
|
|
@JoinColumn(name = "pv_componentid")
|
|
@JoinColumn(name = "pv_componentid")
|
|
|
- private Set<PropertyValue> properties;
|
|
|
|
|
|
|
+ private Set<PropertyValueSimpleInfo> properties;
|
|
|
|
|
|
|
|
private String rowid;
|
|
private String rowid;
|
|
|
|
|
|
|
@@ -107,11 +107,11 @@ public class ComponentSimpleInfo implements Serializable {
|
|
|
this.brandid = brandid;
|
|
this.brandid = brandid;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public Set<PropertyValue> getProperties() {
|
|
|
|
|
|
|
+ public Set<PropertyValueSimpleInfo> getProperties() {
|
|
|
return properties;
|
|
return properties;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setProperties(Set<PropertyValue> properties) {
|
|
|
|
|
|
|
+ public void setProperties(Set<PropertyValueSimpleInfo> properties) {
|
|
|
this.properties = properties;
|
|
this.properties = properties;
|
|
|
}
|
|
}
|
|
|
|
|
|