|
|
@@ -10,6 +10,7 @@ import javax.persistence.JoinColumn;
|
|
|
import javax.persistence.ManyToOne;
|
|
|
import javax.persistence.OneToOne;
|
|
|
import javax.persistence.Table;
|
|
|
+import javax.persistence.Transient;
|
|
|
|
|
|
import org.codehaus.jackson.annotate.JsonIgnore;
|
|
|
import org.hibernate.annotations.Where;
|
|
|
@@ -135,6 +136,12 @@ public class PurchaseOrderDoneItem {
|
|
|
@Column(name = "pd_returnqty")
|
|
|
private Double returnQty;
|
|
|
|
|
|
+ /**
|
|
|
+ * 关键词查询相关
|
|
|
+ */
|
|
|
+ @Transient
|
|
|
+ private Boolean key;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -288,4 +295,12 @@ public class PurchaseOrderDoneItem {
|
|
|
public void setReturnQty(Double returnQty) {
|
|
|
this.returnQty = returnQty;
|
|
|
}
|
|
|
+
|
|
|
+ public Boolean getKey() {
|
|
|
+ return key;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setKey(Boolean key) {
|
|
|
+ this.key = key;
|
|
|
+ }
|
|
|
}
|