|
@@ -16,7 +16,9 @@ public class CmOrganizeProducts implements Serializable {
|
|
|
private String commonlyProduct; //是否是常用商品:0不是常用,1常用商品
|
|
|
private String preferentialProduct; //是否是惊喜特惠:0不是特惠,1惊喜特惠商品
|
|
|
private String validFlag; //商品状态,1已上架,2已下架
|
|
|
- private Integer sort; //排序默认为空,排序优先级1最高,空最后
|
|
|
+ private Integer preferredProductSort; //(优选排序)排序默认为空,排序优先级1最高,空最后
|
|
|
+ private Integer commonlyProductSort; //(常用排序)排序默认为空,排序优先级1最高,空最后
|
|
|
+ private Integer preferentialProductSort; //(精品排序)排序默认为空,排序优先级1最高,空最后
|
|
|
private String addTime; //添加时间
|
|
|
private String updateTime; //更新时间
|
|
|
private String delFlag; //是否有效状态 0 有效 其它无效
|
|
@@ -127,12 +129,28 @@ public class CmOrganizeProducts implements Serializable {
|
|
|
this.validFlag = validFlag;
|
|
|
}
|
|
|
|
|
|
- public Integer getSort() {
|
|
|
- return sort;
|
|
|
+ public Integer getPreferredProductSort() {
|
|
|
+ return preferredProductSort;
|
|
|
}
|
|
|
|
|
|
- public void setSort(Integer sort) {
|
|
|
- this.sort = sort;
|
|
|
+ public void setPreferredProductSort(Integer preferredProductSort) {
|
|
|
+ this.preferredProductSort = preferredProductSort;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCommonlyProductSort() {
|
|
|
+ return commonlyProductSort;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCommonlyProductSort(Integer commonlyProductSort) {
|
|
|
+ this.commonlyProductSort = commonlyProductSort;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getPreferentialProductSort() {
|
|
|
+ return preferentialProductSort;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPreferentialProductSort(Integer preferentialProductSort) {
|
|
|
+ this.preferentialProductSort = preferentialProductSort;
|
|
|
}
|
|
|
|
|
|
public String getAddTime() {
|