...
|
...
|
@@ -18,10 +18,10 @@ public class ProductIBO implements Serializable { |
|
|
private String productName;
|
|
|
private String cnAlphabet;
|
|
|
private String salesPhrase;
|
|
|
private Short brandId;
|
|
|
private Short maxSortId;
|
|
|
private Short middleSortId;
|
|
|
private Short smallSortId;
|
|
|
private Integer brandId;
|
|
|
private Integer maxSortId;
|
|
|
private Integer middleSortId;
|
|
|
private Integer smallSortId;
|
|
|
private Integer seriesId;
|
|
|
private String gender;
|
|
|
private String genderS;
|
...
|
...
|
@@ -39,8 +39,8 @@ public class ProductIBO implements Serializable { |
|
|
private String isAuditing;
|
|
|
private Integer isauditing;
|
|
|
private Integer isrecommend;
|
|
|
private Short ispromotion;
|
|
|
private Byte attribute;
|
|
|
private Integer ispromotion;
|
|
|
private Integer attribute;
|
|
|
private String seasons;
|
|
|
private Integer seasonsS;
|
|
|
private Integer firstShelveTime;
|
...
|
...
|
@@ -49,7 +49,7 @@ public class ProductIBO implements Serializable { |
|
|
private Integer editTime;
|
|
|
private String isDown;
|
|
|
private Integer isdown;
|
|
|
private Byte status;
|
|
|
private Integer status;
|
|
|
private Integer isOutlets;
|
|
|
private Integer folderId;
|
|
|
private String sellChannels;
|
...
|
...
|
@@ -150,11 +150,11 @@ public class ProductIBO implements Serializable { |
|
|
this.salesPhrase = salesPhrase == null ? null : salesPhrase.trim();
|
|
|
}
|
|
|
|
|
|
public Short getMaxSortId() {
|
|
|
public Integer getMaxSortId() {
|
|
|
return maxSortId;
|
|
|
}
|
|
|
|
|
|
public void setMaxSortId(Short maxSortId) {
|
|
|
public void setMaxSortId(Integer maxSortId) {
|
|
|
this.maxSortId = maxSortId;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -166,11 +166,11 @@ public class ProductIBO implements Serializable { |
|
|
this.maxSortName = maxSortName == null ? null : maxSortName.trim();
|
|
|
}
|
|
|
|
|
|
public Short getMiddleSortId() {
|
|
|
public Integer getMiddleSortId() {
|
|
|
return middleSortId;
|
|
|
}
|
|
|
|
|
|
public void setMiddleSortId(Short middleSortId) {
|
|
|
public void setMiddleSortId(Integer middleSortId) {
|
|
|
this.middleSortId = middleSortId;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -182,11 +182,11 @@ public class ProductIBO implements Serializable { |
|
|
this.middleSortName = middleSortName == null ? null : middleSortName.trim();
|
|
|
}
|
|
|
|
|
|
public Short getSmallSortId() {
|
|
|
public Integer getSmallSortId() {
|
|
|
return smallSortId;
|
|
|
}
|
|
|
|
|
|
public void setSmallSortId(Short smallSortId) {
|
|
|
public void setSmallSortId(Integer smallSortId) {
|
|
|
this.smallSortId = smallSortId;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -214,11 +214,11 @@ public class ProductIBO implements Serializable { |
|
|
this.genderS = genderS == null ? null : genderS.trim();
|
|
|
}
|
|
|
|
|
|
public Short getBrandId() {
|
|
|
public Integer getBrandId() {
|
|
|
return brandId;
|
|
|
}
|
|
|
|
|
|
public void setBrandId(Short brandId) {
|
|
|
public void setBrandId(Integer brandId) {
|
|
|
this.brandId = brandId;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -230,11 +230,11 @@ public class ProductIBO implements Serializable { |
|
|
this.isSpecial = isSpecial == null ? null : isSpecial.trim();
|
|
|
}
|
|
|
|
|
|
public Byte getStatus() {
|
|
|
public Integer getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
public void setStatus(Byte status) {
|
|
|
public void setStatus(Integer status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -278,11 +278,11 @@ public class ProductIBO implements Serializable { |
|
|
this.ishot = ishot;
|
|
|
}
|
|
|
|
|
|
public Short getIspromotion() {
|
|
|
public Integer getIspromotion() {
|
|
|
return ispromotion;
|
|
|
}
|
|
|
|
|
|
public void setIspromotion(Short ispromotion) {
|
|
|
public void setIspromotion(Integer ispromotion) {
|
|
|
this.ispromotion = ispromotion;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -342,11 +342,11 @@ public class ProductIBO implements Serializable { |
|
|
this.isauditing = isauditing;
|
|
|
}
|
|
|
|
|
|
public Byte getAttribute() {
|
|
|
public Integer getAttribute() {
|
|
|
return attribute;
|
|
|
}
|
|
|
|
|
|
public void setAttribute(Byte attribute) {
|
|
|
public void setAttribute(Integer attribute) {
|
|
|
this.attribute = attribute;
|
|
|
}
|
|
|
|
...
|
...
|
|