|
@@ -94,6 +94,8 @@ public class CmBrandLanding extends DataEntity<CmBrandLanding> implements Serial
|
|
|
|
|
|
/** 商品Id */
|
|
|
private Integer productId;
|
|
|
+ /** 供应商名称 */
|
|
|
+ private String shopName;
|
|
|
|
|
|
/** 上架方式:1立即上架,2预约上架 */
|
|
|
private Integer bookStatus;
|
|
@@ -118,6 +120,10 @@ public class CmBrandLanding extends DataEntity<CmBrandLanding> implements Serial
|
|
|
|
|
|
/** 文章发布来源:1采美365网,2供应商 */
|
|
|
private Integer publishSource;
|
|
|
+ /** 商品名称 */
|
|
|
+ private String productName;
|
|
|
+ /** 商品图片 */
|
|
|
+ private String productImage;
|
|
|
|
|
|
|
|
|
//点击量统计
|
|
@@ -130,6 +136,30 @@ public class CmBrandLanding extends DataEntity<CmBrandLanding> implements Serial
|
|
|
/** 统计分类*/
|
|
|
private String statisticsType;
|
|
|
|
|
|
+ public String getProductName() {
|
|
|
+ return productName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProductName(String productName) {
|
|
|
+ this.productName = productName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProductImage() {
|
|
|
+ return productImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProductImage(String productImage) {
|
|
|
+ this.productImage = productImage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getShopName() {
|
|
|
+ return shopName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setShopName(String shopName) {
|
|
|
+ this.shopName = shopName;
|
|
|
+ }
|
|
|
+
|
|
|
public String getStatisticsType() {
|
|
|
return statisticsType;
|
|
|
}
|