admin
2020-11-28 dc5be7d38446f70e6ff86df311119c32b41fe7f8
fanli/src/main/java/com/yeshi/fanli/entity/brand/TaoBaoShopHistory.java
@@ -5,7 +5,7 @@
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
import com.yeshi.fanli.entity.taobao.TaoBaoShop;
import com.yeshi.common.entity.taobao.TaoBaoShop;
/**
 * 店铺足迹
@@ -27,7 +27,10 @@
   // 设备id
   @Column(name = "tsh_device")
   private String device;
   // 用户是否已删除 : 1已删除 0未删除
   @Column(name = "tsh_state")
   private Integer state;
   @Column(name = "tsh_create_time")
   private Date createTime;
   
@@ -82,4 +85,12 @@
      this.updateTime = updateTime;
   }
   public Integer getState() {
      return state;
   }
   public void setState(Integer state) {
      this.state = state;
   }
}