Pu Zhibing
5 天以前 a8418685861d0b6599fef0a19553de58a6179d9d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.member.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class LotteryEventCouponListVO {
    @ApiModelProperty(value = "优惠券id")
    private String couponId;
 
    @ApiModelProperty(value="优惠券名称")
    private String couponName;
 
 
}