cmHeHeUserActivity.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.caimei.modules.hehe.entity;
  2. import java.io.Serializable;
  3. /**
  4. * Description
  5. *
  6. * @author : plf
  7. * @date : 2021/4/23
  8. */
  9. public class cmHeHeUserActivity implements Serializable {
  10. private Integer id;
  11. private Integer userId; //用户id
  12. private Integer activityId; //活动id
  13. private Integer productId; //商品id
  14. private Integer sort; //排序值
  15. public Integer getId() {
  16. return id;
  17. }
  18. public void setId(Integer id) {
  19. this.id = id;
  20. }
  21. public Integer getUserId() {
  22. return userId;
  23. }
  24. public void setUserId(Integer userId) {
  25. this.userId = userId;
  26. }
  27. public Integer getActivityId() {
  28. return activityId;
  29. }
  30. public void setActivityId(Integer activityId) {
  31. this.activityId = activityId;
  32. }
  33. public Integer getProductId() {
  34. return productId;
  35. }
  36. public void setProductId(Integer productId) {
  37. this.productId = productId;
  38. }
  39. public Integer getSort() {
  40. return sort;
  41. }
  42. public void setSort(Integer sort) {
  43. this.sort = sort;
  44. }
  45. }