admin
2020-07-16 be67478cae6bf9308f15949a21e7d0a57a3f0ecb
facede-common/src/main/java/com/yeshi/common/entity/taobao/TaoBaoShop.java
File was renamed from fanli/src/main/java/com/yeshi/fanli/entity/taobao/TaoBaoShop.java
@@ -1,246 +1,246 @@
package com.yeshi.fanli.entity.taobao;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
import com.google.gson.annotations.Expose;
/**
 * 淘宝店铺信息(新版)
 *
 * @author Administrator
 *
 */
@Table("yeshi_ec_taobao_shop_info")
public class TaoBaoShop implements Serializable {
   /**
    *
    */
   private static final long serialVersionUID = 1L;
   @Expose
   @Column(name = "tsi_id")
   private Long id;// 卖家ID
   @Expose
   @Column(name = "tsi_user_type")
   private Integer userType;// 用户类型 0-淘宝 1-天猫
   @Expose
   @Column(name = "tsi_shop_id")
   private Long shopId;// 店铺ID
   @Expose
   @Column(name = "tsi_shop_name")
   private String shopName;// 店铺名称
   @Column(name = "tsi_seller_nick")
   private String sellerNick;// 卖家昵
   @Expose
   @Column(name = "tsi_shop_name_custom")
   private String shopNameCustom;// 自定义店铺名称
   @Expose
   @Column(name = "tsi_shop_icon")
   private String shopIcon;// 店铺图标
   @Column(name = "tsi_shop_icon_custom")
   private String shopIconCustom;// 自定义店铺图标
   @Expose
   @Column(name = "tsi_score_goods")
   private BigDecimal scoreGoods;// 商品评分
   @Expose
   @Column(name = "tsi_score_seller")
   private BigDecimal scoreSeller;// 卖家评分
   @Expose
   @Column(name = "tsi_score_logistics")
   private BigDecimal scoreLogistics;// 物流评分
   @Expose
   @Column(name = "tsi_score_goods_d")
   private BigDecimal scoreGoodsD;// 与行业平均分的差值
   @Expose
   @Column(name = "tsi_score_seller_d")
   private BigDecimal scoreSellerD;
   @Expose
   @Column(name = "tsi_score_logistics_d")
   private BigDecimal scoreLogisticsD;
   @Expose
   @Column(name = "tsi_good_rate_percentage")
   private BigDecimal goodRatePercentage;// 好评率
   @Column(name = "tsi_update_time")
   private Date updateTime;
   @Expose
   @Column(name = "tsi_shop_link")
   private String shopLink; // 店铺链接
   @Column(name = "tsi_key")
   private String key; // 关键词
   public TaoBaoShop() {}
   public TaoBaoShop(Long id) {
      this.id = id;
   }
   public Integer getUserType() {
      return userType;
   }
   public void setUserType(Integer userType) {
      this.userType = userType;
   }
   public Long getId() {
      return id;
   }
   public void setId(Long id) {
      this.id = id;
   }
   public Long getShopId() {
      return shopId;
   }
   public void setShopId(Long shopId) {
      this.shopId = shopId;
   }
   public String getShopName() {
      return shopName;
   }
   public void setShopName(String shopName) {
      this.shopName = shopName;
   }
   public String getSellerNick() {
      return sellerNick;
   }
   public void setSellerNick(String sellerNick) {
      this.sellerNick = sellerNick;
   }
   public String getShopIcon() {
      return shopIcon;
   }
   public void setShopIcon(String shopIcon) {
      this.shopIcon = shopIcon;
   }
   public String getShopIconCustom() {
      return shopIconCustom;
   }
   public void setShopIconCustom(String shopIconCustom) {
      this.shopIconCustom = shopIconCustom;
   }
   public BigDecimal getScoreGoods() {
      return scoreGoods;
   }
   public void setScoreGoods(BigDecimal scoreGoods) {
      this.scoreGoods = scoreGoods;
   }
   public BigDecimal getScoreSeller() {
      return scoreSeller;
   }
   public void setScoreSeller(BigDecimal scoreSeller) {
      this.scoreSeller = scoreSeller;
   }
   public BigDecimal getScoreLogistics() {
      return scoreLogistics;
   }
   public void setScoreLogistics(BigDecimal scoreLogistics) {
      this.scoreLogistics = scoreLogistics;
   }
   public BigDecimal getScoreGoodsD() {
      return scoreGoodsD;
   }
   public void setScoreGoodsD(BigDecimal scoreGoodsD) {
      this.scoreGoodsD = scoreGoodsD;
   }
   public BigDecimal getScoreSellerD() {
      return scoreSellerD;
   }
   public void setScoreSellerD(BigDecimal scoreSellerD) {
      this.scoreSellerD = scoreSellerD;
   }
   public BigDecimal getScoreLogisticsD() {
      return scoreLogisticsD;
   }
   public void setScoreLogisticsD(BigDecimal scoreLogisticsD) {
      this.scoreLogisticsD = scoreLogisticsD;
   }
   public Date getUpdateTime() {
      return updateTime;
   }
   public void setUpdateTime(Date updateTime) {
      this.updateTime = updateTime;
   }
   public BigDecimal getGoodRatePercentage() {
      return goodRatePercentage;
   }
   public void setGoodRatePercentage(BigDecimal goodRatePercentage) {
      this.goodRatePercentage = goodRatePercentage;
   }
   public String getShopLink() {
      return shopLink;
   }
   public void setShopLink(String shopLink) {
      this.shopLink = shopLink;
   }
   public String getShopNameCustom() {
      return shopNameCustom;
   }
   public void setShopNameCustom(String shopNameCustom) {
      this.shopNameCustom = shopNameCustom;
   }
   public String getKey() {
      return key;
   }
   public void setKey(String key) {
      this.key = key;
   }
}
package com.yeshi.common.entity.taobao;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import com.google.gson.annotations.Expose;
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
/**
 * 淘宝店铺信息(新版)
 *
 * @author Administrator
 *
 */
@Table("yeshi_ec_taobao_shop_info")
public class TaoBaoShop implements Serializable {
   /**
    *
    */
   private static final long serialVersionUID = 1L;
   @Expose
   @Column(name = "tsi_id")
   private Long id;// 卖家ID
   @Expose
   @Column(name = "tsi_user_type")
   private Integer userType;// 用户类型 0-淘宝 1-天猫
   @Expose
   @Column(name = "tsi_shop_id")
   private Long shopId;// 店铺ID
   @Expose
   @Column(name = "tsi_shop_name")
   private String shopName;// 店铺名称
   @Column(name = "tsi_seller_nick")
   private String sellerNick;// 卖家昵
   @Expose
   @Column(name = "tsi_shop_name_custom")
   private String shopNameCustom;// 自定义店铺名称
   @Expose
   @Column(name = "tsi_shop_icon")
   private String shopIcon;// 店铺图标
   @Column(name = "tsi_shop_icon_custom")
   private String shopIconCustom;// 自定义店铺图标
   @Expose
   @Column(name = "tsi_score_goods")
   private BigDecimal scoreGoods;// 商品评分
   @Expose
   @Column(name = "tsi_score_seller")
   private BigDecimal scoreSeller;// 卖家评分
   @Expose
   @Column(name = "tsi_score_logistics")
   private BigDecimal scoreLogistics;// 物流评分
   @Expose
   @Column(name = "tsi_score_goods_d")
   private BigDecimal scoreGoodsD;// 与行业平均分的差值
   @Expose
   @Column(name = "tsi_score_seller_d")
   private BigDecimal scoreSellerD;
   @Expose
   @Column(name = "tsi_score_logistics_d")
   private BigDecimal scoreLogisticsD;
   @Expose
   @Column(name = "tsi_good_rate_percentage")
   private BigDecimal goodRatePercentage;// 好评率
   @Column(name = "tsi_update_time")
   private Date updateTime;
   @Expose
   @Column(name = "tsi_shop_link")
   private String shopLink; // 店铺链接
   @Column(name = "tsi_key")
   private String key; // 关键词
   public TaoBaoShop() {}
   public TaoBaoShop(Long id) {
      this.id = id;
   }
   public Integer getUserType() {
      return userType;
   }
   public void setUserType(Integer userType) {
      this.userType = userType;
   }
   public Long getId() {
      return id;
   }
   public void setId(Long id) {
      this.id = id;
   }
   public Long getShopId() {
      return shopId;
   }
   public void setShopId(Long shopId) {
      this.shopId = shopId;
   }
   public String getShopName() {
      return shopName;
   }
   public void setShopName(String shopName) {
      this.shopName = shopName;
   }
   public String getSellerNick() {
      return sellerNick;
   }
   public void setSellerNick(String sellerNick) {
      this.sellerNick = sellerNick;
   }
   public String getShopIcon() {
      return shopIcon;
   }
   public void setShopIcon(String shopIcon) {
      this.shopIcon = shopIcon;
   }
   public String getShopIconCustom() {
      return shopIconCustom;
   }
   public void setShopIconCustom(String shopIconCustom) {
      this.shopIconCustom = shopIconCustom;
   }
   public BigDecimal getScoreGoods() {
      return scoreGoods;
   }
   public void setScoreGoods(BigDecimal scoreGoods) {
      this.scoreGoods = scoreGoods;
   }
   public BigDecimal getScoreSeller() {
      return scoreSeller;
   }
   public void setScoreSeller(BigDecimal scoreSeller) {
      this.scoreSeller = scoreSeller;
   }
   public BigDecimal getScoreLogistics() {
      return scoreLogistics;
   }
   public void setScoreLogistics(BigDecimal scoreLogistics) {
      this.scoreLogistics = scoreLogistics;
   }
   public BigDecimal getScoreGoodsD() {
      return scoreGoodsD;
   }
   public void setScoreGoodsD(BigDecimal scoreGoodsD) {
      this.scoreGoodsD = scoreGoodsD;
   }
   public BigDecimal getScoreSellerD() {
      return scoreSellerD;
   }
   public void setScoreSellerD(BigDecimal scoreSellerD) {
      this.scoreSellerD = scoreSellerD;
   }
   public BigDecimal getScoreLogisticsD() {
      return scoreLogisticsD;
   }
   public void setScoreLogisticsD(BigDecimal scoreLogisticsD) {
      this.scoreLogisticsD = scoreLogisticsD;
   }
   public Date getUpdateTime() {
      return updateTime;
   }
   public void setUpdateTime(Date updateTime) {
      this.updateTime = updateTime;
   }
   public BigDecimal getGoodRatePercentage() {
      return goodRatePercentage;
   }
   public void setGoodRatePercentage(BigDecimal goodRatePercentage) {
      this.goodRatePercentage = goodRatePercentage;
   }
   public String getShopLink() {
      return shopLink;
   }
   public void setShopLink(String shopLink) {
      this.shopLink = shopLink;
   }
   public String getShopNameCustom() {
      return shopNameCustom;
   }
   public void setShopNameCustom(String shopNameCustom) {
      this.shopNameCustom = shopNameCustom;
   }
   public String getKey() {
      return key;
   }
   public void setKey(String key) {
      this.key = key;
   }
}