|
|
@@ -266,6 +266,12 @@ public class Product {
|
|
|
@Column(name = "pr_matchstatus")
|
|
|
private Integer matchstatus;
|
|
|
|
|
|
+ /**
|
|
|
+ * 匹配数量(用作排序)
|
|
|
+ */
|
|
|
+ @Column(name = "pr_matchsize")
|
|
|
+ private Integer matchsize;
|
|
|
+
|
|
|
/**
|
|
|
* 匹配结果
|
|
|
*/
|
|
|
@@ -560,6 +566,14 @@ public class Product {
|
|
|
this.matchstatus = matchstatus;
|
|
|
}
|
|
|
|
|
|
+ public Integer getMatchsize() {
|
|
|
+ return matchsize;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMatchsize(Integer matchsize) {
|
|
|
+ this.matchsize = matchsize;
|
|
|
+ }
|
|
|
+
|
|
|
public Set<ProductMatchResult> getMatchresults() {
|
|
|
return matchresults;
|
|
|
}
|