123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- package com.kmall.api.entity;
- import java.io.Serializable;
- /**
- * @author Scott
- * @email
- * @date 2017-08-15 08:03:39
- */
- public class CollectVo implements Serializable {
- private static final long serialVersionUID = 1L;
- //主键
- private Integer id;
- //用户Id
- private Long user_id;
- //产品Id
- private Integer value_id;
- //添加时间
- private Long add_time;
- //是否是关注
- private Integer is_attention;
- //收藏类别 0type_id 1预留 2:团购
- private Integer type_id;
- //
- private String name;
- private String list_pic_url;
- private String goods_brief;
- private String retail_price;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Long getUser_id() {
- return user_id;
- }
- public void setUser_id(Long user_id) {
- this.user_id = user_id;
- }
- public Integer getValue_id() {
- return value_id;
- }
- public void setValue_id(Integer value_id) {
- this.value_id = value_id;
- }
- public Long getAdd_time() {
- return add_time;
- }
- public void setAdd_time(Long add_time) {
- this.add_time = add_time;
- }
- public Integer getIs_attention() {
- return is_attention;
- }
- public void setIs_attention(Integer is_attention) {
- this.is_attention = is_attention;
- }
- public Integer getType_id() {
- return type_id;
- }
- public void setType_id(Integer type_id) {
- this.type_id = type_id;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getList_pic_url() {
- return list_pic_url;
- }
- public void setList_pic_url(String list_pic_url) {
- this.list_pic_url = list_pic_url;
- }
- public String getGoods_brief() {
- return goods_brief;
- }
- public void setGoods_brief(String goods_brief) {
- this.goods_brief = goods_brief;
- }
- public String getRetail_price() {
- return retail_price;
- }
- public void setRetail_price(String retail_price) {
- this.retail_price = retail_price;
- }
- }
|