CouponSharePo.java 692 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 Integer shareCouponId;
  25. /**
  26. * 消费分享券的订单id(唯一)
  27. */
  28. private Integer orderId;
  29. /**
  30. * 优惠券类型:1好友分享券,2好友消费券,3消费分享券
  31. */
  32. private Integer type;
  33. }