1
0

CollectVo.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package com.kmall.api.entity;
  2. import java.io.Serializable;
  3. /**
  4. * @author Scott
  5. * @email
  6. * @date 2017-08-15 08:03:39
  7. */
  8. public class CollectVo implements Serializable {
  9. private static final long serialVersionUID = 1L;
  10. //主键
  11. private Integer id;
  12. //用户Id
  13. private Long user_id;
  14. //产品Id
  15. private Integer value_id;
  16. //添加时间
  17. private Long add_time;
  18. //是否是关注
  19. private Integer is_attention;
  20. //收藏类别 0type_id 1预留 2:团购
  21. private Integer type_id;
  22. //
  23. private String name;
  24. private String list_pic_url;
  25. private String goods_brief;
  26. private String retail_price;
  27. public Integer getId() {
  28. return id;
  29. }
  30. public void setId(Integer id) {
  31. this.id = id;
  32. }
  33. public Long getUser_id() {
  34. return user_id;
  35. }
  36. public void setUser_id(Long user_id) {
  37. this.user_id = user_id;
  38. }
  39. public Integer getValue_id() {
  40. return value_id;
  41. }
  42. public void setValue_id(Integer value_id) {
  43. this.value_id = value_id;
  44. }
  45. public Long getAdd_time() {
  46. return add_time;
  47. }
  48. public void setAdd_time(Long add_time) {
  49. this.add_time = add_time;
  50. }
  51. public Integer getIs_attention() {
  52. return is_attention;
  53. }
  54. public void setIs_attention(Integer is_attention) {
  55. this.is_attention = is_attention;
  56. }
  57. public Integer getType_id() {
  58. return type_id;
  59. }
  60. public void setType_id(Integer type_id) {
  61. this.type_id = type_id;
  62. }
  63. public String getName() {
  64. return name;
  65. }
  66. public void setName(String name) {
  67. this.name = name;
  68. }
  69. public String getList_pic_url() {
  70. return list_pic_url;
  71. }
  72. public void setList_pic_url(String list_pic_url) {
  73. this.list_pic_url = list_pic_url;
  74. }
  75. public String getGoods_brief() {
  76. return goods_brief;
  77. }
  78. public void setGoods_brief(String goods_brief) {
  79. this.goods_brief = goods_brief;
  80. }
  81. public String getRetail_price() {
  82. return retail_price;
  83. }
  84. public void setRetail_price(String retail_price) {
  85. this.retail_price = retail_price;
  86. }
  87. }