| | |
| | | import java.util.Date;
|
| | | import java.util.List;
|
| | |
|
| | | import javax.persistence.Entity;
|
| | | import javax.persistence.GeneratedValue;
|
| | | import javax.persistence.GenerationType;
|
| | | import javax.persistence.Id;
|
| | | import javax.persistence.Transient;
|
| | |
|
| | | import org.hibernate.annotations.Type;
|
| | |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | @Entity
|
| | | @org.yeshi.utils.mybatis.Table("yeshi_ec_taobao_goods")
|
| | | @Document(collection="taoBaoGoodsCache")
|
| | | public class TaoBaoGoodsBrief implements Serializable {
|
| | | public class TaoBaoGoodsBrief extends TaoBaoGoodsYuShouInfo implements Serializable {
|
| | |
|
| | |
|
| | | /**
|
| | |
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name = "id")
|
| | | @Id
|
| | | @GeneratedValue(strategy = GenerationType.AUTO)
|
| | | @Expose
|
| | | private Long id;
|
| | |
| | | @Expose
|
| | | private String title;// 商品标题
|
| | |
|
| | | |
| | | @Field
|
| | | @Indexed
|
| | | @org.yeshi.utils.mybatis.Column(name = "auctionId")
|
| | |
| | | @Transient
|
| | | private Integer materialLibType;//物料库类型
|
| | |
|
| | | private String description;//推荐语
|
| | | |
| | | @Transient
|
| | | private boolean shopCoupon;//是否为店铺券
|
| | | |
| | |
|
| | |
|
| | | /* 新增字段 2018-7-16 ; 由于数据未从淘宝获取成功,暂不启用 */
|
| | |
|
| | |
|
| | |
|
| | | public boolean isShopCoupon() {
|
| | | return shopCoupon;
|
| | | }
|
| | |
|
| | | public void setShopCoupon(boolean shopCoupon) {
|
| | | this.shopCoupon = shopCoupon;
|
| | | }
|
| | |
|
| | | public Integer getMaterialLibType() {
|
| | | return materialLibType;
|
| | | }
|
| | |
| | | this.pictUrlWhite = pictUrlWhite;
|
| | | }
|
| | |
|
| | | public String getDescription() {
|
| | | return description;
|
| | | }
|
| | |
|
| | | public void setDescription(String description) {
|
| | | this.description = description;
|
| | | }
|
| | | |
| | | }
|