|
@@ -184,6 +184,10 @@ public class Product extends DataEntity<Product> {
|
|
|
* 资质机构商品详情信息
|
|
|
*/
|
|
|
private String detailInfo;
|
|
|
+ /**
|
|
|
+ * 商品说明
|
|
|
+ */
|
|
|
+ private String productDescribe;
|
|
|
/**
|
|
|
* 普通机构商品详情
|
|
|
*/
|
|
@@ -207,6 +211,14 @@ public class Product extends DataEntity<Product> {
|
|
|
*/
|
|
|
private Integer searchType;
|
|
|
|
|
|
+ public String getProductDescribe() {
|
|
|
+ return productDescribe;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProductDescribe(String productDescribe) {
|
|
|
+ this.productDescribe = productDescribe;
|
|
|
+ }
|
|
|
+
|
|
|
public String getProductDetail() {
|
|
|
return productDetail;
|
|
|
}
|