|
|
package com.yoho.search.consumer.service.bo;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
/**
|
|
|
* @author hugufei
|
|
|
* @product inner join brand inner join productsort
|
|
|
*/
|
|
|
public class ProductI implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 5550525695217052845L;
|
|
|
|
|
|
// from product
|
|
|
private Integer id;
|
|
|
private Integer productId;
|
|
|
private Integer productSkn;
|
|
|
private Integer shopId;
|
|
|
private String productName;
|
|
|
private String cnAlphabet;
|
|
|
private String salesPhrase;
|
|
|
private Short brandId;
|
|
|
private Short maxSortId;
|
|
|
private Short middleSortId;
|
|
|
private Short smallSortId;
|
|
|
private Integer seriesId;
|
|
|
private String gender;
|
|
|
private String genderS;
|
|
|
private String style;
|
|
|
private String isnew;
|
|
|
private String islimited;
|
|
|
private Integer ishot;
|
|
|
private String isHot;
|
|
|
private String isSpecial;
|
|
|
private Integer isspecial;
|
|
|
private String isSales;
|
|
|
private Integer issales;
|
|
|
private String isAdvance;
|
|
|
private Integer isadvance;
|
|
|
private String isAuditing;
|
|
|
private Integer isauditing;
|
|
|
private Integer isrecommend;
|
|
|
private Short ispromotion;
|
|
|
private Byte attribute;
|
|
|
private String seasons;
|
|
|
private Integer seasonsS;
|
|
|
private Integer firstShelveTime;
|
|
|
private Integer shelveTime;
|
|
|
private String shelveDay;
|
|
|
private Integer editTime;
|
|
|
private String isDown;
|
|
|
private Integer isdown;
|
|
|
private Byte status;
|
|
|
private Integer isOutlets;
|
|
|
private Integer folderId;
|
|
|
private String sellChannels;
|
|
|
private String ageLevel;
|
|
|
private Integer appType;
|
|
|
private String isInstalment;//是否支持分期
|
|
|
private String isSeckill;
|
|
|
|
|
|
// inner join brand
|
|
|
private String brandNameCn;
|
|
|
private String brandNameEn;
|
|
|
private String brandKeyword;
|
|
|
private String hotKeyword;
|
|
|
private String brandName;
|
|
|
private String brandDomain;
|
|
|
private String brandAlif;
|
|
|
private Integer countryId;
|
|
|
|
|
|
// inner join product_sort
|
|
|
private String maxSort;
|
|
|
private String maxSortName;
|
|
|
private String middleSort;
|
|
|
private String middleSortName;
|
|
|
private String smallSort;
|
|
|
private String smallSortName;
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
|
}
|
|
|
|
|
|
public void setId(Integer id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
public Integer getProductId() {
|
|
|
return productId;
|
|
|
}
|
|
|
|
|
|
public void setProductId(Integer productId) {
|
|
|
this.productId = productId;
|
|
|
}
|
|
|
|
|
|
public Integer getShopId() {
|
|
|
return shopId;
|
|
|
}
|
|
|
|
|
|
public void setShopId(Integer shopId) {
|
|
|
this.shopId = shopId;
|
|
|
}
|
|
|
|
|
|
public Integer getShelveTime() {
|
|
|
return shelveTime;
|
|
|
}
|
|
|
|
|
|
public void setShelveTime(Integer shelveTime) {
|
|
|
this.shelveTime = shelveTime;
|
|
|
}
|
|
|
|
|
|
public String getShelveDay() {
|
|
|
return shelveDay;
|
|
|
}
|
|
|
|
|
|
public void setShelveDay(String shelveDay) {
|
|
|
this.shelveDay = shelveDay;
|
|
|
}
|
|
|
|
|
|
public String getCnAlphabet() {
|
|
|
return cnAlphabet;
|
|
|
}
|
|
|
|
|
|
public void setCnAlphabet(String cnAlphabet) {
|
|
|
this.cnAlphabet = cnAlphabet == null ? null : cnAlphabet.trim();
|
|
|
}
|
|
|
|
|
|
public String getProductName() {
|
|
|
return productName;
|
|
|
}
|
|
|
|
|
|
public void setProductName(String productName) {
|
|
|
this.productName = productName == null ? null : productName.trim();
|
|
|
}
|
|
|
|
|
|
public String getStyle() {
|
|
|
return style;
|
|
|
}
|
|
|
|
|
|
public void setStyle(String style) {
|
|
|
this.style = style == null ? null : style.trim();
|
|
|
}
|
|
|
|
|
|
public String getSalesPhrase() {
|
|
|
return salesPhrase;
|
|
|
}
|
|
|
|
|
|
public void setSalesPhrase(String salesPhrase) {
|
|
|
this.salesPhrase = salesPhrase == null ? null : salesPhrase.trim();
|
|
|
}
|
|
|
|
|
|
public Short getMaxSortId() {
|
|
|
return maxSortId;
|
|
|
}
|
|
|
|
|
|
public void setMaxSortId(Short maxSortId) {
|
|
|
this.maxSortId = maxSortId;
|
|
|
}
|
|
|
|
|
|
public String getMaxSortName() {
|
|
|
return maxSortName;
|
|
|
}
|
|
|
|
|
|
public void setMaxSortName(String maxSortName) {
|
|
|
this.maxSortName = maxSortName == null ? null : maxSortName.trim();
|
|
|
}
|
|
|
|
|
|
public Short getMiddleSortId() {
|
|
|
return middleSortId;
|
|
|
}
|
|
|
|
|
|
public void setMiddleSortId(Short middleSortId) {
|
|
|
this.middleSortId = middleSortId;
|
|
|
}
|
|
|
|
|
|
public String getMiddleSortName() {
|
|
|
return middleSortName;
|
|
|
}
|
|
|
|
|
|
public void setMiddleSortName(String middleSortName) {
|
|
|
this.middleSortName = middleSortName == null ? null : middleSortName.trim();
|
|
|
}
|
|
|
|
|
|
public Short getSmallSortId() {
|
|
|
return smallSortId;
|
|
|
}
|
|
|
|
|
|
public void setSmallSortId(Short smallSortId) {
|
|
|
this.smallSortId = smallSortId;
|
|
|
}
|
|
|
|
|
|
public String getSmallSortName() {
|
|
|
return smallSortName;
|
|
|
}
|
|
|
|
|
|
public void setSmallSortName(String smallSortName) {
|
|
|
this.smallSortName = smallSortName == null ? null : smallSortName.trim();
|
|
|
}
|
|
|
|
|
|
public String getGender() {
|
|
|
return gender;
|
|
|
}
|
|
|
|
|
|
public void setGender(String gender) {
|
|
|
this.gender = gender == null ? null : gender.trim();
|
|
|
}
|
|
|
|
|
|
public String getGenderS() {
|
|
|
return genderS;
|
|
|
}
|
|
|
|
|
|
public void setGenderS(String genderS) {
|
|
|
this.genderS = genderS == null ? null : genderS.trim();
|
|
|
}
|
|
|
|
|
|
public Short getBrandId() {
|
|
|
return brandId;
|
|
|
}
|
|
|
|
|
|
public void setBrandId(Short brandId) {
|
|
|
this.brandId = brandId;
|
|
|
}
|
|
|
|
|
|
public String getIsSpecial() {
|
|
|
return isSpecial;
|
|
|
}
|
|
|
|
|
|
public void setIsSpecial(String isSpecial) {
|
|
|
this.isSpecial = isSpecial == null ? null : isSpecial.trim();
|
|
|
}
|
|
|
|
|
|
public Byte getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
public void setStatus(Byte status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
public Integer getSeasonsS() {
|
|
|
return seasonsS;
|
|
|
}
|
|
|
|
|
|
public void setSeasonsS(Integer seasonsS) {
|
|
|
this.seasonsS = seasonsS;
|
|
|
}
|
|
|
|
|
|
public Integer getIsspecial() {
|
|
|
return isspecial;
|
|
|
}
|
|
|
|
|
|
public void setIsspecial(Integer isspecial) {
|
|
|
this.isspecial = isspecial;
|
|
|
}
|
|
|
|
|
|
public String getIsHot() {
|
|
|
return isHot;
|
|
|
}
|
|
|
|
|
|
public void setIsHot(String isHot) {
|
|
|
this.isHot = isHot == null ? null : isHot.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getFolderId() {
|
|
|
return folderId;
|
|
|
}
|
|
|
|
|
|
public void setFolderId(Integer folderId) {
|
|
|
this.folderId = folderId;
|
|
|
}
|
|
|
|
|
|
public Integer getIshot() {
|
|
|
return ishot;
|
|
|
}
|
|
|
|
|
|
public void setIshot(Integer ishot) {
|
|
|
this.ishot = ishot;
|
|
|
}
|
|
|
|
|
|
public Short getIspromotion() {
|
|
|
return ispromotion;
|
|
|
}
|
|
|
|
|
|
public void setIspromotion(Short ispromotion) {
|
|
|
this.ispromotion = ispromotion;
|
|
|
}
|
|
|
|
|
|
public Integer getSeriesId() {
|
|
|
return seriesId;
|
|
|
}
|
|
|
|
|
|
public void setSeriesId(Integer seriesId) {
|
|
|
this.seriesId = seriesId;
|
|
|
}
|
|
|
|
|
|
public String getIsSales() {
|
|
|
return isSales;
|
|
|
}
|
|
|
|
|
|
public void setIsSales(String isSales) {
|
|
|
this.isSales = isSales == null ? null : isSales.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getIssales() {
|
|
|
return issales;
|
|
|
}
|
|
|
|
|
|
public void setIssales(Integer issales) {
|
|
|
this.issales = issales;
|
|
|
}
|
|
|
|
|
|
public String getIsAdvance() {
|
|
|
return isAdvance;
|
|
|
}
|
|
|
|
|
|
public void setIsAdvance(String isAdvance) {
|
|
|
this.isAdvance = isAdvance == null ? null : isAdvance.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getIsadvance() {
|
|
|
return isadvance;
|
|
|
}
|
|
|
|
|
|
public void setIsadvance(Integer isadvance) {
|
|
|
this.isadvance = isadvance;
|
|
|
}
|
|
|
|
|
|
public String getIsAuditing() {
|
|
|
return isAuditing;
|
|
|
}
|
|
|
|
|
|
public void setIsAuditing(String isAuditing) {
|
|
|
this.isAuditing = isAuditing == null ? null : isAuditing.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getIsauditing() {
|
|
|
return isauditing;
|
|
|
}
|
|
|
|
|
|
public void setIsauditing(Integer isauditing) {
|
|
|
this.isauditing = isauditing;
|
|
|
}
|
|
|
|
|
|
public Byte getAttribute() {
|
|
|
return attribute;
|
|
|
}
|
|
|
|
|
|
public void setAttribute(Byte attribute) {
|
|
|
this.attribute = attribute;
|
|
|
}
|
|
|
|
|
|
public String getSeasons() {
|
|
|
return seasons;
|
|
|
}
|
|
|
|
|
|
public void setSeasons(String seasons) {
|
|
|
this.seasons = seasons == null ? null : seasons.trim();
|
|
|
}
|
|
|
|
|
|
public String getIsDown() {
|
|
|
return isDown;
|
|
|
}
|
|
|
|
|
|
public void setIsDown(String isDown) {
|
|
|
this.isDown = isDown == null ? null : isDown.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getIsdown() {
|
|
|
return isdown;
|
|
|
}
|
|
|
|
|
|
public void setIsdown(Integer isdown) {
|
|
|
this.isdown = isdown;
|
|
|
}
|
|
|
|
|
|
public Integer getIsrecommend() {
|
|
|
return isrecommend;
|
|
|
}
|
|
|
|
|
|
public void setIsrecommend(Integer isrecommend) {
|
|
|
this.isrecommend = isrecommend;
|
|
|
}
|
|
|
|
|
|
public Integer getIsOutlets() {
|
|
|
return isOutlets;
|
|
|
}
|
|
|
|
|
|
public void setIsOutlets(Integer isOutlets) {
|
|
|
this.isOutlets = isOutlets;
|
|
|
}
|
|
|
|
|
|
public Integer getFirstShelveTime() {
|
|
|
return firstShelveTime;
|
|
|
}
|
|
|
|
|
|
public void setFirstShelveTime(Integer firstShelveTime) {
|
|
|
this.firstShelveTime = firstShelveTime;
|
|
|
}
|
|
|
|
|
|
public String getSellChannels() {
|
|
|
return sellChannels;
|
|
|
}
|
|
|
|
|
|
public void setSellChannels(String sellChannels) {
|
|
|
this.sellChannels = sellChannels == null ? null : sellChannels.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getProductSkn() {
|
|
|
return productSkn;
|
|
|
}
|
|
|
|
|
|
public void setProductSkn(Integer productSkn) {
|
|
|
this.productSkn = productSkn;
|
|
|
}
|
|
|
|
|
|
public String getIsnew() {
|
|
|
return isnew;
|
|
|
}
|
|
|
|
|
|
public void setIsnew(String isnew) {
|
|
|
this.isnew = isnew;
|
|
|
}
|
|
|
|
|
|
public String getBrandNameCn() {
|
|
|
return brandNameCn;
|
|
|
}
|
|
|
|
|
|
public void setBrandNameCn(String brandNameCn) {
|
|
|
this.brandNameCn = brandNameCn == null ? null : brandNameCn.trim();
|
|
|
}
|
|
|
|
|
|
public String getBrandNameEn() {
|
|
|
return brandNameEn;
|
|
|
}
|
|
|
|
|
|
public void setBrandNameEn(String brandNameEn) {
|
|
|
this.brandNameEn = brandNameEn == null ? null : brandNameEn.trim();
|
|
|
}
|
|
|
|
|
|
public String getBrandKeyword() {
|
|
|
return brandKeyword;
|
|
|
}
|
|
|
|
|
|
public void setBrandKeyword(String brandKeyword) {
|
|
|
this.brandKeyword = brandKeyword == null ? null : brandKeyword.trim();
|
|
|
}
|
|
|
|
|
|
public String getHotKeyword() {
|
|
|
return hotKeyword;
|
|
|
}
|
|
|
|
|
|
public void setHotKeyword(String hotKeyword) {
|
|
|
this.hotKeyword = hotKeyword == null ? null : hotKeyword.trim();
|
|
|
}
|
|
|
|
|
|
public String getBrandName() {
|
|
|
return brandName;
|
|
|
}
|
|
|
|
|
|
public void setBrandName(String brandName) {
|
|
|
this.brandName = brandName == null ? null : brandName.trim();
|
|
|
}
|
|
|
|
|
|
public String getBrandDomain() {
|
|
|
return brandDomain;
|
|
|
}
|
|
|
|
|
|
public void setBrandDomain(String brandDomain) {
|
|
|
this.brandDomain = brandDomain == null ? null : brandDomain.trim();
|
|
|
}
|
|
|
|
|
|
public String getBrandAlif() {
|
|
|
return brandAlif;
|
|
|
}
|
|
|
|
|
|
public void setBrandAlif(String brandAlif) {
|
|
|
this.brandAlif = brandAlif == null ? null : brandAlif.trim();
|
|
|
}
|
|
|
|
|
|
public Integer getEditTime() {
|
|
|
return editTime;
|
|
|
}
|
|
|
|
|
|
public void setEditTime(Integer editTime) {
|
|
|
this.editTime = editTime;
|
|
|
}
|
|
|
|
|
|
public String getIslimited() {
|
|
|
return islimited;
|
|
|
}
|
|
|
|
|
|
public void setIslimited(String islimited) {
|
|
|
this.islimited = islimited;
|
|
|
}
|
|
|
|
|
|
public String getMaxSort() {
|
|
|
return maxSort;
|
|
|
}
|
|
|
|
|
|
public void setMaxSort(String maxSort) {
|
|
|
this.maxSort = maxSort;
|
|
|
}
|
|
|
|
|
|
public String getMiddleSort() {
|
|
|
return middleSort;
|
|
|
}
|
|
|
|
|
|
public void setMiddleSort(String middleSort) {
|
|
|
this.middleSort = middleSort;
|
|
|
}
|
|
|
|
|
|
public String getSmallSort() {
|
|
|
return smallSort;
|
|
|
}
|
|
|
|
|
|
public void setSmallSort(String smallSort) {
|
|
|
this.smallSort = smallSort;
|
|
|
}
|
|
|
|
|
|
public String getAgeLevel() {
|
|
|
return ageLevel;
|
|
|
}
|
|
|
|
|
|
public void setAgeLevel(String ageLevel) {
|
|
|
this.ageLevel = ageLevel;
|
|
|
}
|
|
|
|
|
|
public Integer getAppType() {
|
|
|
return appType;
|
|
|
}
|
|
|
|
|
|
public void setAppType(Integer appType) {
|
|
|
this.appType = appType;
|
|
|
}
|
|
|
|
|
|
public String getIsInstalment() {
|
|
|
return isInstalment;
|
|
|
}
|
|
|
|
|
|
public void setIsInstalment(String isInstalment) {
|
|
|
this.isInstalment = isInstalment;
|
|
|
}
|
|
|
|
|
|
public Integer getCountryId() {
|
|
|
return countryId;
|
|
|
}
|
|
|
|
|
|
public void setCountryId(Integer countryId) {
|
|
|
this.countryId = countryId;
|
|
|
}
|
|
|
|
|
|
public String getIsSeckill() {
|
|
|
return isSeckill;
|
|
|
}
|
|
|
|
|
|
public void setIsSeckill(String isSeckill) {
|
|
|
this.isSeckill = isSeckill;
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|