123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698 |
- package com.kmall.admin.entity;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.ArrayList;
- import java.util.Date;
- import java.util.List;
- /**
- * @author Scott
- * @email
- * @date 2017-08-13 10:41:08
- */
- public class GoodsEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- //主键
- private Long id;
- //商品类型Id
- private Integer categoryId;
- //商品序列号
- private String goodsSn;
- //名称
- private String name;
- //品牌Id
- private Integer brandId;
- //商品库存
- private Integer goodsNumber;
- //关键字
- private String keywords;
- //简明介绍
- private String goodsBrief;
- //商品描述
- private String goodsDesc;
- //上架
- private Integer isOnSale;
- //添加时间
- private Date addTime;
- //修改时间
- private Date updateTime;
- //排序
- private Integer sortOrder;
- //删除状态
- private Integer isDelete;
- //属性类别
- private Integer attributeCategory;
- //库存价格
- private BigDecimal counterPrice;
- //附加价格
- private BigDecimal extraPrice;
- //是否新商品
- private Integer isNew;
- //商品单位
- private String goodsUnit;
- //商品主图
- private String primaryPicUrl;
- //商品列表图
- private String listPicUrl;
- //零售价格
- private BigDecimal retailPrice;
- //销售量
- private Integer sellVolume;
- //主sku product_id
- private Long primaryProductId;
- //单位价格,单价
- private BigDecimal unitPrice;
- //推广描述
- private String promotionDesc;
- //推广标签
- private String promotionTag;
- //APP专享价
- private BigDecimal appExclusivePrice;
- //是否是APP专属
- private Integer isAppExclusive;
- //限购
- private Integer isLimited;
- //热销
- private Integer isHot;
- //市场价
- private BigDecimal marketPrice;
- /**
- * 用户ID
- */
- private Long createUserId;
- private Long createUserDeptId;
- /**
- * 用户ID
- */
- private Long updateUserId;
- // 商品类型
- private Integer goodsType = 0; // 0普通 1 2团购
- List<GoodsAttributeEntity> attributeEntityList = new ArrayList<>();
- List<GoodsGalleryEntity> goodsImgList = new ArrayList<>();
- List<ProductEntity> productEntityList = new ArrayList<>();
- /**
- * 翻译用字段
- */
- //商品类型
- private String categoryName;
- //属性类别
- private String attributeCategoryName;
- //品牌
- private String brandName;
- private String sku;
- private String goodsBizType;
- private String createrSn;
- private Date createTime;
- private String moderSn;
- private Date modTime;
- private Date tstm;
- public String getSku() {
- return sku;
- }
- public void setSku(String sku) {
- this.sku = sku;
- }
- public String getGoodsBizType() {
- return goodsBizType;
- }
- public void setGoodsBizType(String goodsBizType) {
- this.goodsBizType = goodsBizType;
- }
- public String getCreaterSn() {
- return createrSn;
- }
- public void setCreaterSn(String createrSn) {
- this.createrSn = createrSn;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getModerSn() {
- return moderSn;
- }
- public void setModerSn(String moderSn) {
- this.moderSn = moderSn;
- }
- public Date getModTime() {
- return modTime;
- }
- public void setModTime(Date modTime) {
- this.modTime = modTime;
- }
- public Date getTstm() {
- return tstm;
- }
- public void setTstm(Date tstm) {
- this.tstm = tstm;
- }
- public Long getCreateUserDeptId() {
- return createUserDeptId;
- }
- public void setCreateUserDeptId(Long createUserDeptId) {
- this.createUserDeptId = createUserDeptId;
- }
- public List<GoodsGalleryEntity> getGoodsImgList() {
- return goodsImgList;
- }
- public void setGoodsImgList(List<GoodsGalleryEntity> goodsImgList) {
- this.goodsImgList = goodsImgList;
- }
- public String getBrandName() {
- return brandName;
- }
- public void setBrandName(String brandName) {
- this.brandName = brandName;
- }
- public String getAttributeCategoryName() {
- return attributeCategoryName;
- }
- public void setAttributeCategoryName(String attributeCategoryName) {
- this.attributeCategoryName = attributeCategoryName;
- }
- public String getCategoryName() {
- return categoryName;
- }
- public void setCategoryName(String categoryName) {
- this.categoryName = categoryName;
- }
- /**
- * 设置:主键
- */
- public void setId(Long id) {
- this.id = id;
- }
- /**
- * 获取:主键
- */
- public Long getId() {
- return id;
- }
- /**
- * 设置:商品类型Id
- */
- public void setCategoryId(Integer categoryId) {
- this.categoryId = categoryId;
- }
- /**
- * 获取:商品类型Id
- */
- public Integer getCategoryId() {
- return categoryId;
- }
- /**
- * 设置:商品序列号
- */
- public void setGoodsSn(String goodsSn) {
- this.goodsSn = goodsSn;
- }
- /**
- * 获取:商品序列号
- */
- public String getGoodsSn() {
- return goodsSn;
- }
- /**
- * 设置:名称
- */
- public void setName(String name) {
- this.name = name;
- }
- /**
- * 获取:名称
- */
- public String getName() {
- return name;
- }
- /**
- * 设置:品牌Id
- */
- public void setBrandId(Integer brandId) {
- this.brandId = brandId;
- }
- /**
- * 获取:品牌Id
- */
- public Integer getBrandId() {
- return brandId;
- }
- /**
- * 设置:商品序列号
- */
- public void setGoodsNumber(Integer goodsNumber) {
- this.goodsNumber = goodsNumber;
- }
- /**
- * 获取:商品序列号
- */
- public Integer getGoodsNumber() {
- return goodsNumber;
- }
- /**
- * 设置:关键字
- */
- public void setKeywords(String keywords) {
- this.keywords = keywords;
- }
- /**
- * 获取:关键字
- */
- public String getKeywords() {
- return keywords;
- }
- /**
- * 设置:简明介绍
- */
- public void setGoodsBrief(String goodsBrief) {
- this.goodsBrief = goodsBrief;
- }
- /**
- * 获取:简明介绍
- */
- public String getGoodsBrief() {
- return goodsBrief;
- }
- /**
- * 设置:商品描述
- */
- public void setGoodsDesc(String goodsDesc) {
- this.goodsDesc = goodsDesc;
- }
- /**
- * 获取:商品描述
- */
- public String getGoodsDesc() {
- return goodsDesc;
- }
- /**
- * 设置:上架
- */
- public void setIsOnSale(Integer isOnSale) {
- this.isOnSale = isOnSale;
- }
- /**
- * 获取:上架
- */
- public Integer getIsOnSale() {
- return isOnSale;
- }
- /**
- * 设置:添加时间
- */
- public void setAddTime(Date addTime) {
- this.addTime = addTime;
- }
- /**
- * 获取:添加时间
- */
- public Date getAddTime() {
- return addTime;
- }
- /**
- * 设置:排序
- */
- public void setSortOrder(Integer sortOrder) {
- this.sortOrder = sortOrder;
- }
- /**
- * 获取:排序
- */
- public Integer getSortOrder() {
- return sortOrder;
- }
- /**
- * 设置:删除状态
- */
- public void setIsDelete(Integer isDelete) {
- this.isDelete = isDelete;
- }
- /**
- * 获取:删除状态
- */
- public Integer getIsDelete() {
- return isDelete;
- }
- /**
- * 设置:属性类别
- */
- public void setAttributeCategory(Integer attributeCategory) {
- this.attributeCategory = attributeCategory;
- }
- /**
- * 获取:属性类别
- */
- public Integer getAttributeCategory() {
- return attributeCategory;
- }
- /**
- * 设置:专柜价格
- */
- public void setCounterPrice(BigDecimal counterPrice) {
- this.counterPrice = counterPrice;
- }
- /**
- * 获取:专柜价格
- */
- public BigDecimal getCounterPrice() {
- return counterPrice;
- }
- /**
- * 设置:附加价格
- */
- public void setExtraPrice(BigDecimal extraPrice) {
- this.extraPrice = extraPrice;
- }
- /**
- * 获取:附加价格
- */
- public BigDecimal getExtraPrice() {
- return extraPrice;
- }
- /**
- * 设置:是否新商品
- */
- public void setIsNew(Integer isNew) {
- this.isNew = isNew;
- }
- /**
- * 获取:是否新商品
- */
- public Integer getIsNew() {
- return isNew;
- }
- /**
- * 设置:商品单位
- */
- public void setGoodsUnit(String goodsUnit) {
- this.goodsUnit = goodsUnit;
- }
- /**
- * 获取:商品单位
- */
- public String getGoodsUnit() {
- return goodsUnit;
- }
- /**
- * 设置:商品主图
- */
- public void setPrimaryPicUrl(String primaryPicUrl) {
- this.primaryPicUrl = primaryPicUrl;
- }
- /**
- * 获取:商品主图
- */
- public String getPrimaryPicUrl() {
- return primaryPicUrl;
- }
- /**
- * 设置:商品列表图
- */
- public void setListPicUrl(String listPicUrl) {
- this.listPicUrl = listPicUrl;
- }
- /**
- * 获取:商品列表图
- */
- public String getListPicUrl() {
- return listPicUrl;
- }
- /**
- * 设置:零售价格
- */
- public void setRetailPrice(BigDecimal retailPrice) {
- this.retailPrice = retailPrice;
- }
- /**
- * 获取:零售价格
- */
- public BigDecimal getRetailPrice() {
- return retailPrice;
- }
- /**
- * 设置:销售量
- */
- public void setSellVolume(Integer sellVolume) {
- this.sellVolume = sellVolume;
- }
- /**
- * 获取:销售量
- */
- public Integer getSellVolume() {
- return sellVolume;
- }
- /**
- * 设置:主sku product_id
- */
- public void setPrimaryProductId(Long primaryProductId) {
- this.primaryProductId = primaryProductId;
- }
- /**
- * 获取:主sku product_id
- */
- public Long getPrimaryProductId() {
- return primaryProductId;
- }
- /**
- * 设置:单位价格,单价
- */
- public void setUnitPrice(BigDecimal unitPrice) {
- this.unitPrice = unitPrice;
- }
- /**
- * 获取:单位价格,单价
- */
- public BigDecimal getUnitPrice() {
- return unitPrice;
- }
- /**
- * 设置:推广描述
- */
- public void setPromotionDesc(String promotionDesc) {
- this.promotionDesc = promotionDesc;
- }
- /**
- * 获取:推广描述
- */
- public String getPromotionDesc() {
- return promotionDesc;
- }
- /**
- * 设置:推广标签
- */
- public void setPromotionTag(String promotionTag) {
- this.promotionTag = promotionTag;
- }
- /**
- * 获取:推广标签
- */
- public String getPromotionTag() {
- return promotionTag;
- }
- /**
- * 设置:APP专享价
- */
- public void setAppExclusivePrice(BigDecimal appExclusivePrice) {
- this.appExclusivePrice = appExclusivePrice;
- }
- /**
- * 获取:APP专享价
- */
- public BigDecimal getAppExclusivePrice() {
- return appExclusivePrice;
- }
- /**
- * 设置:是否是APP专属
- */
- public void setIsAppExclusive(Integer isAppExclusive) {
- this.isAppExclusive = isAppExclusive;
- }
- /**
- * 获取:是否是APP专属
- */
- public Integer getIsAppExclusive() {
- return isAppExclusive;
- }
- /**
- * 设置:限购
- */
- public void setIsLimited(Integer isLimited) {
- this.isLimited = isLimited;
- }
- /**
- * 获取:限购
- */
- public Integer getIsLimited() {
- return isLimited;
- }
- /**
- * 设置:热销
- */
- public void setIsHot(Integer isHot) {
- this.isHot = isHot;
- }
- /**
- * 获取:热销
- */
- public Integer getIsHot() {
- return isHot;
- }
- public BigDecimal getMarketPrice() {
- return marketPrice;
- }
- public void setMarketPrice(BigDecimal marketPrice) {
- this.marketPrice = marketPrice;
- }
- public List<GoodsAttributeEntity> getAttributeEntityList() {
- return attributeEntityList;
- }
- public void setAttributeEntityList(List<GoodsAttributeEntity> attributeEntityList) {
- this.attributeEntityList = attributeEntityList;
- }
- public Long getCreateUserId() {
- return createUserId;
- }
- public void setCreateUserId(Long createUserId) {
- this.createUserId = createUserId;
- }
- public Long getUpdateUserId() {
- return updateUserId;
- }
- public void setUpdateUserId(Long updateUserId) {
- this.updateUserId = updateUserId;
- }
- public Date getUpdateTime() {
- return updateTime;
- }
- public void setUpdateTime(Date updateTime) {
- this.updateTime = updateTime;
- }
- public List<ProductEntity> getProductEntityList() {
- return productEntityList;
- }
- public void setProductEntityList(List<ProductEntity> productEntityList) {
- this.productEntityList = productEntityList;
- }
- public Integer getGoodsType() {
- return goodsType;
- }
- public void setGoodsType(Integer goodsType) {
- this.goodsType = goodsType;
- }
- }
|