|
|
@@ -62,6 +62,12 @@ public class CollectionInfo implements Serializable{
|
|
|
@Column(name = "store_spec")
|
|
|
private String spec;
|
|
|
|
|
|
+ /**
|
|
|
+ * 器件的uuid
|
|
|
+ */
|
|
|
+ @Column(name = "store_cmpuuid", length = 100)
|
|
|
+ private String cmpuuid;
|
|
|
+
|
|
|
public Long getUseruu() {
|
|
|
return useruu;
|
|
|
}
|
|
|
@@ -126,4 +132,13 @@ public class CollectionInfo implements Serializable{
|
|
|
this.spec = spec;
|
|
|
return this;
|
|
|
}
|
|
|
+
|
|
|
+ public String getCmpuuid() {
|
|
|
+ return cmpuuid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public CollectionInfo setCmpuuid(String cmpuuid) {
|
|
|
+ this.cmpuuid = cmpuuid;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
}
|