From 51a4ff5d777028d52a19c314a99f796334cb7b51 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期六, 23 十一月 2019 18:30:01 +0800 Subject: [PATCH] 配置文件修改 --- fanli/src/main/java/com/yeshi/fanli/entity/taobao/TaoBaoShop.java | 84 ++++++++++++++++++++++++++++++++++++++++- 1 files changed, 81 insertions(+), 3 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/taobao/TaoBaoShop.java b/fanli/src/main/java/com/yeshi/fanli/entity/taobao/TaoBaoShop.java index b5cc69d..3171935 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/taobao/TaoBaoShop.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/taobao/TaoBaoShop.java @@ -1,10 +1,13 @@ 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; /** * 娣樺疂搴楅摵淇℃伅锛堟柊鐗堬級 @@ -13,37 +16,88 @@ * */ @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; + + @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; @@ -165,4 +219,28 @@ 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; + } + } -- Gitblit v1.8.0