| 123456789101112131415161718192021222324252627282930 |
- package com.ylx.massage.domain.vo;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.util.List;
- /**
- * @author jianlong
- * @date 2024-09-11 15:40
- */
- @Data
- @ApiModel(value = "CouponReceivesVO" ,description = "弹窗领取优惠卷")
- public class CouponReceivesVO {
- /**
- * 用户openId
- */
- @ApiModelProperty("用户openId")
- private String openId;
- /**
- * 优惠卷id
- */
- @ApiModelProperty("优惠卷id")
- private List<String> couponIds;
- }
|