|
|
@@ -16,245 +16,87 @@ public class GoodsBean {
|
|
|
/**
|
|
|
* 商品id
|
|
|
*/
|
|
|
- private String goodsId;
|
|
|
+ public String goodsId;
|
|
|
/**
|
|
|
* 封面图片地址
|
|
|
*/
|
|
|
- private String coverImageUrl;
|
|
|
+ public String coverImageUrl;
|
|
|
/**
|
|
|
* 标题
|
|
|
*/
|
|
|
- private String title;
|
|
|
+ public String title;
|
|
|
/**
|
|
|
* 商品描述
|
|
|
*/
|
|
|
- private String description;
|
|
|
+ public String description;
|
|
|
/**
|
|
|
* 商品推荐理由(一句话推荐、推荐者心声)
|
|
|
*/
|
|
|
- private String reason;
|
|
|
+ public String reason;
|
|
|
/**
|
|
|
* 原价
|
|
|
*/
|
|
|
- private double oldPrice;
|
|
|
+ public double oldPrice;
|
|
|
/**
|
|
|
* 现价
|
|
|
*/
|
|
|
- private double nowPrice;
|
|
|
+ public double nowPrice;
|
|
|
/**
|
|
|
* 返利
|
|
|
*/
|
|
|
- private String rebate;
|
|
|
+ public String rebate;
|
|
|
/**
|
|
|
* 店名
|
|
|
*/
|
|
|
- private String shopName;
|
|
|
+ public String shopName;
|
|
|
/**
|
|
|
* 商店所属省份
|
|
|
*/
|
|
|
- private String province;
|
|
|
+ public String province;
|
|
|
/**
|
|
|
* 是否自营
|
|
|
*/
|
|
|
- private boolean isSelfBusiness;
|
|
|
+ public boolean isSelfBusiness;
|
|
|
/**
|
|
|
* 是否有券
|
|
|
*/
|
|
|
- private boolean hasCoupon;
|
|
|
+ public boolean hasCoupon;
|
|
|
/**
|
|
|
* 优惠券金额
|
|
|
*/
|
|
|
- private String couponMoney;
|
|
|
+ public String couponMoney;
|
|
|
/**
|
|
|
* 所属类型
|
|
|
*/
|
|
|
- private int goodsType;
|
|
|
+ public int goodsType;
|
|
|
/**
|
|
|
* 商品链接
|
|
|
*/
|
|
|
- private String goodsUrl;
|
|
|
+ public String goodsUrl;
|
|
|
/**
|
|
|
* 月销量
|
|
|
*/
|
|
|
- private int salesPerMonth;
|
|
|
+ public int salesPerMonth;
|
|
|
|
|
|
/**
|
|
|
* 评论条数
|
|
|
*/
|
|
|
- private int commentNum;
|
|
|
+ public int commentNum;
|
|
|
|
|
|
/**
|
|
|
* 好评率
|
|
|
*/
|
|
|
- private double goodCommentPercent;
|
|
|
+ public double goodCommentPercent;
|
|
|
|
|
|
/**
|
|
|
* 创建时间
|
|
|
*/
|
|
|
- private long createTimeMillis;
|
|
|
+ public long createTimeMillis;
|
|
|
|
|
|
/**
|
|
|
* 更新时间
|
|
|
*/
|
|
|
- private long updateTimeMillis;
|
|
|
+ public long updateTimeMillis;
|
|
|
|
|
|
- public String getGoodsId() {
|
|
|
- return goodsId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGoodsId(String goodsId) {
|
|
|
- this.goodsId = goodsId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCoverImageUrl() {
|
|
|
- return coverImageUrl;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCoverImageUrl(String coverImageUrl) {
|
|
|
- this.coverImageUrl = coverImageUrl;
|
|
|
- }
|
|
|
-
|
|
|
- public String getTitle() {
|
|
|
- return title;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTitle(String title) {
|
|
|
- this.title = title;
|
|
|
- }
|
|
|
-
|
|
|
- public double getOldPrice() {
|
|
|
- return oldPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOldPrice(double oldPrice) {
|
|
|
- this.oldPrice = oldPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public double getNowPrice() {
|
|
|
- return nowPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public void setNowPrice(double nowPrice) {
|
|
|
- this.nowPrice = nowPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public String getRebate() {
|
|
|
- return rebate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRebate(String rebate) {
|
|
|
- this.rebate = rebate;
|
|
|
- }
|
|
|
-
|
|
|
- public String getShopName() {
|
|
|
- return shopName;
|
|
|
- }
|
|
|
-
|
|
|
- public void setShopName(String shopName) {
|
|
|
- this.shopName = shopName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getProvince() {
|
|
|
- return province;
|
|
|
- }
|
|
|
-
|
|
|
- public void setProvince(String province) {
|
|
|
- this.province = province;
|
|
|
- }
|
|
|
-
|
|
|
- public boolean isSelfBusiness() {
|
|
|
- return isSelfBusiness;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSelfBusiness(boolean selfBusiness) {
|
|
|
- isSelfBusiness = selfBusiness;
|
|
|
- }
|
|
|
-
|
|
|
- public boolean isHasCoupon() {
|
|
|
- return hasCoupon;
|
|
|
- }
|
|
|
-
|
|
|
- public void setHasCoupon(boolean hasCoupon) {
|
|
|
- this.hasCoupon = hasCoupon;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDescription() {
|
|
|
- return description;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDescription(String description) {
|
|
|
- this.description = description;
|
|
|
- }
|
|
|
-
|
|
|
- public String getReason() {
|
|
|
- return reason;
|
|
|
- }
|
|
|
-
|
|
|
- public void setReason(String reason) {
|
|
|
- this.reason = reason;
|
|
|
- }
|
|
|
-
|
|
|
- public int getGoodsType() {
|
|
|
- return goodsType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGoodsType(int goodsType) {
|
|
|
- this.goodsType = goodsType;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCouponMoney() {
|
|
|
- return couponMoney;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCouponMoney(String couponMoney) {
|
|
|
- this.couponMoney = couponMoney;
|
|
|
- }
|
|
|
-
|
|
|
- public String getGoodsUrl() {
|
|
|
- return goodsUrl;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGoodsUrl(String goodsUrl) {
|
|
|
- this.goodsUrl = goodsUrl;
|
|
|
- }
|
|
|
-
|
|
|
- public int getSalesPerMonth() {
|
|
|
- return salesPerMonth;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSalesPerMonth(int salesPerMonth) {
|
|
|
- this.salesPerMonth = salesPerMonth;
|
|
|
- }
|
|
|
-
|
|
|
- public int getCommentNum() {
|
|
|
- return commentNum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCommentNum(int commentNum) {
|
|
|
- this.commentNum = commentNum;
|
|
|
- }
|
|
|
-
|
|
|
- public double getGoodCommentPercent() {
|
|
|
- return goodCommentPercent;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGoodCommentPercent(double goodCommentPercent) {
|
|
|
- this.goodCommentPercent = goodCommentPercent;
|
|
|
- }
|
|
|
-
|
|
|
- public long getCreateTimeMillis() {
|
|
|
- return createTimeMillis;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateTimeMillis(long createTimeMillis) {
|
|
|
- this.createTimeMillis = createTimeMillis;
|
|
|
- }
|
|
|
-
|
|
|
- public long getUpdateTimeMillis() {
|
|
|
- return updateTimeMillis;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUpdateTimeMillis(long updateTimeMillis) {
|
|
|
- this.updateTimeMillis = updateTimeMillis;
|
|
|
- }
|
|
|
+
|
|
|
}
|