|
|
@@ -46,6 +46,8 @@ public class ProdSimpleInfo {
|
|
|
|
|
|
public static final String STANDARD_FIELD = "pr_standard";
|
|
|
|
|
|
+ public static final String MATCHESTAUTS_FIELD = "pr_matchstatus";
|
|
|
+
|
|
|
@Id
|
|
|
@Column(name = ID_FIELD)
|
|
|
private Long id;
|
|
|
@@ -133,6 +135,12 @@ public class ProdSimpleInfo {
|
|
|
@Column(name = STANDARD_FIELD)
|
|
|
private Short standard;
|
|
|
|
|
|
+ /**
|
|
|
+ * 匹配状态,主要用于过滤匹配结果显示
|
|
|
+ */
|
|
|
+ @Column(name = MATCHESTAUTS_FIELD)
|
|
|
+ private Short matchstatus;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -238,6 +246,14 @@ public class ProdSimpleInfo {
|
|
|
this.cmpCode = cmpCode;
|
|
|
}
|
|
|
|
|
|
+ public Short getMatchstatus() {
|
|
|
+ return matchstatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMatchstatus(Short matchstatus) {
|
|
|
+ this.matchstatus = matchstatus;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 获取所有可以搜索的字段列名(索引的field名)
|
|
|
*
|