|
|
@@ -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;
|
|
|
+ }
|
|
|
+
|
|
|
}
|