|
@@ -43,6 +43,10 @@ public class CmMallOrganizeProducts implements Serializable {
|
|
private String itemsList;//添加商品字符串
|
|
private String itemsList;//添加商品字符串
|
|
private String existsFlag;//是否已存在小程序商品中 1已存在,其他都为不存在
|
|
private String existsFlag;//是否已存在小程序商品中 1已存在,其他都为不存在
|
|
|
|
|
|
|
|
+ public static long getSerialVersionUID() {
|
|
|
|
+ return serialVersionUID;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Integer getId() {
|
|
public Integer getId() {
|
|
return id;
|
|
return id;
|
|
}
|
|
}
|
|
@@ -51,7 +55,6 @@ public class CmMallOrganizeProducts implements Serializable {
|
|
this.id = id;
|
|
this.id = id;
|
|
}
|
|
}
|
|
|
|
|
|
- @Length(min = 0, max = 11, message = "对应cm_mall_products_classify商品分类表id长度必须介于 0 和 11 之间")
|
|
|
|
public String getClassifyID() {
|
|
public String getClassifyID() {
|
|
return classifyID;
|
|
return classifyID;
|
|
}
|
|
}
|
|
@@ -60,7 +63,6 @@ public class CmMallOrganizeProducts implements Serializable {
|
|
this.classifyID = classifyID;
|
|
this.classifyID = classifyID;
|
|
}
|
|
}
|
|
|
|
|
|
- @Length(min = 0, max = 11, message = "组织ID,具体对应cm_mall_organize表ID长度必须介于 0 和 11 之间")
|
|
|
|
public String getOrganizeID() {
|
|
public String getOrganizeID() {
|
|
return organizeID;
|
|
return organizeID;
|
|
}
|
|
}
|
|
@@ -69,7 +71,6 @@ public class CmMallOrganizeProducts implements Serializable {
|
|
this.organizeID = organizeID;
|
|
this.organizeID = organizeID;
|
|
}
|
|
}
|
|
|
|
|
|
- @Length(min = 0, max = 11, message = "商品ID,具体对应product表长度必须介于 0 和 11 之间")
|
|
|
|
public String getProductID() {
|
|
public String getProductID() {
|
|
return productID;
|
|
return productID;
|
|
}
|
|
}
|
|
@@ -102,7 +103,6 @@ public class CmMallOrganizeProducts implements Serializable {
|
|
this.retailPrice = retailPrice;
|
|
this.retailPrice = retailPrice;
|
|
}
|
|
}
|
|
|
|
|
|
- @Length(min = 0, max = 11, message = "最小起订量长度必须介于 0 和 11 之间")
|
|
|
|
public String getMinBuyNumber() {
|
|
public String getMinBuyNumber() {
|
|
return minBuyNumber;
|
|
return minBuyNumber;
|
|
}
|
|
}
|
|
@@ -111,7 +111,6 @@ public class CmMallOrganizeProducts implements Serializable {
|
|
this.minBuyNumber = minBuyNumber;
|
|
this.minBuyNumber = minBuyNumber;
|
|
}
|
|
}
|
|
|
|
|
|
- @Length(min = 0, max = 1, message = "是否是优选商品:0不是优选,1优选商品长度必须介于 0 和 1 之间")
|
|
|
|
public String getPreferredProduct() {
|
|
public String getPreferredProduct() {
|
|
return preferredProduct;
|
|
return preferredProduct;
|
|
}
|
|
}
|
|
@@ -120,7 +119,6 @@ public class CmMallOrganizeProducts implements Serializable {
|
|
this.preferredProduct = preferredProduct;
|
|
this.preferredProduct = preferredProduct;
|
|
}
|
|
}
|
|
|
|
|
|
- @Length(min = 0, max = 1, message = "是否是常用商品:0不是常用,1常用商品长度必须介于 0 和 1 之间")
|
|
|
|
public String getCommonlyProduct() {
|
|
public String getCommonlyProduct() {
|
|
return commonlyProduct;
|
|
return commonlyProduct;
|
|
}
|
|
}
|
|
@@ -129,7 +127,6 @@ public class CmMallOrganizeProducts implements Serializable {
|
|
this.commonlyProduct = commonlyProduct;
|
|
this.commonlyProduct = commonlyProduct;
|
|
}
|
|
}
|
|
|
|
|
|
- @Length(min = 0, max = 1, message = "是否是星范精品:0不是特惠,1星范精品商品长度必须介于 0 和 1 之间")
|
|
|
|
public String getPreferentialProduct() {
|
|
public String getPreferentialProduct() {
|
|
return preferentialProduct;
|
|
return preferentialProduct;
|
|
}
|
|
}
|
|
@@ -138,7 +135,6 @@ public class CmMallOrganizeProducts implements Serializable {
|
|
this.preferentialProduct = preferentialProduct;
|
|
this.preferentialProduct = preferentialProduct;
|
|
}
|
|
}
|
|
|
|
|
|
- @Length(min = 0, max = 2, message = "商品状态,1已上架,2已下架长度必须介于 0 和 2 之间")
|
|
|
|
public String getValidFlag() {
|
|
public String getValidFlag() {
|
|
return validFlag;
|
|
return validFlag;
|
|
}
|
|
}
|
|
@@ -147,7 +143,30 @@ public class CmMallOrganizeProducts implements Serializable {
|
|
this.validFlag = validFlag;
|
|
this.validFlag = validFlag;
|
|
}
|
|
}
|
|
|
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
|
+ public String getPreferredProductSort() {
|
|
|
|
+ return preferredProductSort;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPreferredProductSort(String preferredProductSort) {
|
|
|
|
+ this.preferredProductSort = preferredProductSort;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getCommonlyProductSort() {
|
|
|
|
+ return commonlyProductSort;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCommonlyProductSort(String commonlyProductSort) {
|
|
|
|
+ this.commonlyProductSort = commonlyProductSort;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getPreferentialProductSort() {
|
|
|
|
+ return preferentialProductSort;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPreferentialProductSort(String preferentialProductSort) {
|
|
|
|
+ this.preferentialProductSort = preferentialProductSort;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Date getAddTime() {
|
|
public Date getAddTime() {
|
|
return addTime;
|
|
return addTime;
|
|
}
|
|
}
|
|
@@ -156,7 +175,6 @@ public class CmMallOrganizeProducts implements Serializable {
|
|
this.addTime = addTime;
|
|
this.addTime = addTime;
|
|
}
|
|
}
|
|
|
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
public Date getUpdateTime() {
|
|
public Date getUpdateTime() {
|
|
return updateTime;
|
|
return updateTime;
|
|
}
|
|
}
|
|
@@ -165,6 +183,14 @@ public class CmMallOrganizeProducts implements Serializable {
|
|
this.updateTime = updateTime;
|
|
this.updateTime = updateTime;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Integer getModules() {
|
|
|
|
+ return modules;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setModules(Integer modules) {
|
|
|
|
+ this.modules = modules;
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getMainImage() {
|
|
public String getMainImage() {
|
|
return mainImage;
|
|
return mainImage;
|
|
}
|
|
}
|
|
@@ -197,30 +223,6 @@ public class CmMallOrganizeProducts implements Serializable {
|
|
this.productClassifyName = productClassifyName;
|
|
this.productClassifyName = productClassifyName;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getPreferredProductSort() {
|
|
|
|
- return preferredProductSort;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPreferredProductSort(String preferredProductSort) {
|
|
|
|
- this.preferredProductSort = preferredProductSort;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getCommonlyProductSort() {
|
|
|
|
- return commonlyProductSort;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCommonlyProductSort(String commonlyProductSort) {
|
|
|
|
- this.commonlyProductSort = commonlyProductSort;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getPreferentialProductSort() {
|
|
|
|
- return preferentialProductSort;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setPreferentialProductSort(String preferentialProductSort) {
|
|
|
|
- this.preferentialProductSort = preferentialProductSort;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
public String getItemsList() {
|
|
public String getItemsList() {
|
|
return itemsList;
|
|
return itemsList;
|
|
}
|
|
}
|
|
@@ -236,12 +238,4 @@ public class CmMallOrganizeProducts implements Serializable {
|
|
public void setExistsFlag(String existsFlag) {
|
|
public void setExistsFlag(String existsFlag) {
|
|
this.existsFlag = existsFlag;
|
|
this.existsFlag = existsFlag;
|
|
}
|
|
}
|
|
-
|
|
|
|
- public Integer getModules() {
|
|
|
|
- return modules;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setModules(Integer modules) {
|
|
|
|
- this.modules = modules;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|