CouponReceivesVO.java 553 B

123456789101112131415161718192021222324252627282930
  1. package com.ylx.massage.domain.vo;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. import java.util.List;
  6. /**
  7. * @author jianlong
  8. * @date 2024-09-11 15:40
  9. */
  10. @Data
  11. @ApiModel(value = "CouponReceivesVO" ,description = "弹窗领取优惠卷")
  12. public class CouponReceivesVO {
  13. /**
  14. * 用户openId
  15. */
  16. @ApiModelProperty("用户openId")
  17. private String openId;
  18. /**
  19. * 优惠卷id
  20. */
  21. @ApiModelProperty("优惠卷id")
  22. private List<String> couponIds;
  23. }