...
|
...
|
@@ -2,14 +2,40 @@ package com.yoho.search.vo; |
|
|
|
|
|
public class SizeSortReqBO {
|
|
|
|
|
|
private String breaking = "1";
|
|
|
private String isdiscount = "Y";// 是否打折
|
|
|
private String storage_num = "1";
|
|
|
private String breaking = "1";
|
|
|
|
|
|
private String sort;// 小分类id,以逗号隔开
|
|
|
private String size;// 尺码 Id,以逗号隔开
|
|
|
private String gender;//性别 1-男 2-女 3-通用,以逗号分隔
|
|
|
private String gender;// 性别 1-男 2-女 3-通用,以逗号分隔
|
|
|
|
|
|
private String productStatus = "1";// 1:商品上架
|
|
|
private String attribute_not = "2";// 1:非赠品 2:赠品
|
|
|
|
|
|
public String getIsdiscount() {
|
|
|
return isdiscount;
|
|
|
}
|
|
|
|
|
|
public void setIsdiscount(String isdiscount) {
|
|
|
this.isdiscount = isdiscount;
|
|
|
}
|
|
|
|
|
|
public String getStorage_num() {
|
|
|
return storage_num;
|
|
|
}
|
|
|
|
|
|
public void setStorage_num(String storage_num) {
|
|
|
this.storage_num = storage_num;
|
|
|
}
|
|
|
|
|
|
public String getBreaking() {
|
|
|
return breaking;
|
|
|
}
|
|
|
|
|
|
public void setBreaking(String breaking) {
|
|
|
this.breaking = breaking;
|
|
|
}
|
|
|
|
|
|
public String getSort() {
|
|
|
return sort;
|
...
|
...
|
@@ -27,6 +53,14 @@ public class SizeSortReqBO { |
|
|
this.size = size;
|
|
|
}
|
|
|
|
|
|
public String getGender() {
|
|
|
return gender;
|
|
|
}
|
|
|
|
|
|
public void setGender(String gender) {
|
|
|
this.gender = gender;
|
|
|
}
|
|
|
|
|
|
public String getProductStatus() {
|
|
|
return productStatus;
|
|
|
}
|
...
|
...
|
@@ -43,28 +77,4 @@ public class SizeSortReqBO { |
|
|
this.attribute_not = attribute_not;
|
|
|
}
|
|
|
|
|
|
public String getBreaking() {
|
|
|
return breaking;
|
|
|
}
|
|
|
|
|
|
public void setBreaking(String breaking) {
|
|
|
this.breaking = breaking;
|
|
|
}
|
|
|
|
|
|
public String getStorage_num() {
|
|
|
return storage_num;
|
|
|
}
|
|
|
|
|
|
public void setStorage_num(String storage_num) {
|
|
|
this.storage_num = storage_num;
|
|
|
}
|
|
|
|
|
|
public String getGender() {
|
|
|
return gender;
|
|
|
}
|
|
|
|
|
|
public void setGender(String gender) {
|
|
|
this.gender = gender;
|
|
|
}
|
|
|
|
|
|
} |
...
|
...
|
|