|
|
@@ -40,6 +40,12 @@ public class V_Products implements RowMapper, Serializable {
|
|
|
@Column(name = "pr_title")
|
|
|
private String title;
|
|
|
|
|
|
+ /**
|
|
|
+ * 规格
|
|
|
+ */
|
|
|
+ @Column(name = "pr_spec")
|
|
|
+ private String spec;
|
|
|
+
|
|
|
/**
|
|
|
* 型号
|
|
|
*/
|
|
|
@@ -128,6 +134,14 @@ public class V_Products implements RowMapper, Serializable {
|
|
|
this.title = title;
|
|
|
}
|
|
|
|
|
|
+ public String getSpec() {
|
|
|
+ return spec;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSpec(String spec) {
|
|
|
+ this.spec = spec;
|
|
|
+ }
|
|
|
+
|
|
|
public String getCmpCode() {
|
|
|
return cmpCode;
|
|
|
}
|
|
|
@@ -216,6 +230,7 @@ public class V_Products implements RowMapper, Serializable {
|
|
|
", cmpCode='" + cmpCode + '\'' +
|
|
|
", brand='" + brand + '\'' +
|
|
|
", kind='" + kind + '\'' +
|
|
|
+ ", spec='" + spec + '\'' +
|
|
|
", pCmpCode='" + pCmpCode + '\'' +
|
|
|
", pBrandEn='" + pBrandEn + '\'' +
|
|
|
", pBrandCn='" + pBrandCn + '\'' +
|
|
|
@@ -235,6 +250,7 @@ public class V_Products implements RowMapper, Serializable {
|
|
|
products.setCmpCode(rs.getString("pr_cmpcode"));
|
|
|
products.setEnUU(rs.getLong("pr_enuu"));
|
|
|
products.setKind(rs.getString("pr_kind"));
|
|
|
+ products.setSpec(rs.getString("pr_spec"));
|
|
|
products.setpBrandEn(rs.getString("pr_pbranden"));
|
|
|
products.setpBrandCn(rs.getString("pr_pbrand"));
|
|
|
products.setpCmpCode(rs.getString("pr_pcmpcode"));
|