CouponSharePo.java 709 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.caimei.model.po;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. /**
  5. * Description
  6. *
  7. * @author : Aslee
  8. * @date : 2021/11/3
  9. */
  10. @Data
  11. public class CouponSharePo implements Serializable {
  12. private Integer id;
  13. /**
  14. * 分享者用户id
  15. */
  16. private Integer shareUserId;
  17. /**
  18. * 被分享者用户id
  19. */
  20. private Integer receiveUserId;
  21. /**
  22. * 分享得到的好友分享券id,以,隔开
  23. */
  24. private String shareCouponIds;
  25. /**
  26. * 被分享者是否已消费,0未消费,1已消费
  27. */
  28. private Integer consumeFlag;
  29. /**
  30. * 分享对象消费后得到的好友消费券id
  31. */
  32. private String consumeCouponIds;
  33. }