puzhibing
2023-07-27 614b0106f079e67bb674a37ede2bd0fe3df2a430
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
27
package com.dsh.account.model.vo.classDetails;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class RegisteredCourse {
 
    @ApiModelProperty(value = "课程ID")
    private Integer courseId;
 
    @ApiModelProperty(value = "课程名称")
    private String courseName;
 
    @ApiModelProperty(value = "总学时数")
    private Integer totalNums;
 
    @ApiModelProperty(value = "已扣学时数")
    private Integer deductedNums;
 
    @ApiModelProperty(value = "剩余学时数")
    private Integer remainingNums;
 
    @ApiModelProperty(value = "课时有效期")
    private String periodOfValidity;
 
}