|
@@ -106,6 +106,13 @@ public class ComponentGoods implements Serializable {
|
|
|
@Column(name = "cmp_brid")
|
|
@Column(name = "cmp_brid")
|
|
|
private Long brandid;
|
|
private Long brandid;
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 器件描述
|
|
|
|
|
+ */
|
|
|
|
|
+ @Column(name = "cmp_description", length = 4000)
|
|
|
|
|
+ private String description;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* 器件的品牌
|
|
* 器件的品牌
|
|
|
*/
|
|
*/
|
|
@@ -503,6 +510,14 @@ public class ComponentGoods implements Serializable {
|
|
|
this.packaging = packaging;
|
|
this.packaging = packaging;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ public String getDescription() {
|
|
|
|
|
+ return description;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setDescription(String description) {
|
|
|
|
|
+ this.description = description;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
public String getEncapsulation() {
|
|
public String getEncapsulation() {
|
|
|
return encapsulation;
|
|
return encapsulation;
|
|
|
}
|
|
}
|