44323
2024-04-23 16b704d18a875d1fb63827aaa507790ba2bef5be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.stylefeng.guns.modular.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.ArrayList;
import java.util.List;
 
@Data
@ApiModel
public class CompeleteVO {
    @ApiModelProperty(value = "课程封面")
    private String coverImg;
    @ApiModelProperty(value = "课程名称")
    private String courseName;
    @ApiModelProperty(value = "坚持运动天数")
    private Integer clockIn;
    @ApiModelProperty(value = "课程是否免费 0否1是 如果课程免费 打卡之后不展示其他文案")
    private Integer isFree;
    @ApiModelProperty(value = "如果配置了打卡赠送优惠券 该字段返回还差xx天能领取优惠券 该字段为null 则没有打卡赠送优惠券")
    private Integer time;
    @ApiModelProperty(value = "可以领取的优惠券列表")
    List<CouponVO> couponVOS;
 
}