Browse Source

物料信息增加是否可买,是否公开展示,是否公开销售

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@8629 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d
hejq 9 years ago
parent
commit
3fa6218b0b
1 changed files with 34 additions and 1 deletions
  1. 34 1
      src/main/java/com/uas/platform/b2b/model/Product.java

+ 34 - 1
src/main/java/com/uas/platform/b2b/model/Product.java

@@ -183,12 +183,29 @@ public class Product {
 
 	/**
 	 * 是否可买<br>
-	 * 1. 可以<br>
+	 * 1. 可以<br>
 	 * 0. 不可
 	 */
 	@Column(name = "pr_ispurchase")
 	private Short isPurchase;
 
+	/**
+	 * 公开展示<br>
+	 * 
+	 * 1. 是<br>
+	 * 0. 否
+	 */
+	@Column(name = "pr_isshow")
+	private Short isShow;
+
+	/**
+	 * 公开销售 <br>
+	 * 1. 是<br>
+	 * 0. 否
+	 */
+	@Column(name = "pr_ispubsale")
+	private Short isPubsale;
+
 	/**
 	 * 附件
 	 */
@@ -404,4 +421,20 @@ public class Product {
 		this.isPurchase = isPurchase;
 	}
 
+	public Short getIsShow() {
+		return isShow;
+	}
+
+	public void setIsShow(Short isShow) {
+		this.isShow = isShow;
+	}
+
+	public Short getIsPubsale() {
+		return isPubsale;
+	}
+
+	public void setIsPubsale(Short isPubsale) {
+		this.isPubsale = isPubsale;
+	}
+
 }