| | |
| | | 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;
|
| | |
|
| | | /**
|
| | | * 淘宝店铺信息(新版)
|
| | |
| | | *
|
| | | */
|
| | | @Table("yeshi_ec_taobao_shop_info")
|
| | | public class TaoBaoShop {
|
| | | 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-天猫
|
| | | 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;// 卖家昵称
|
| | | 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;
|
| | |
|
| | | // 店铺链接
|
| | | private String shopLink;
|
| | | |
| | | @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;
|
| | | }
|
| | |
| | | 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;
|
| | | }
|
| | |
|
| | | }
|