nickchange
2023-11-17 a9564eae9f0169ca39329b2f14a8f13d13358a0a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.dsh.course.model.vo.request;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class PayCourseReq {
    @ApiModelProperty(value = "需要购买的课程id")
    private Integer courseId;
    @ApiModelProperty(value = "用于购买课包id")
    private Long oldCourseId;
    @ApiModelProperty(value = "用于购买课程时间 如 2020-03-01")
    private List<String> time;
 
    @ApiModelProperty(value = "需要扣除的课时数",dataType = "int")
    private Integer num;
    @ApiModelProperty(value = "学员stuId")
    private  Integer stuId;
 
}