44323
2023-10-24 0379c65f03ec6ccf27eebbdc72a25cabbda28e5a
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
28
29
package com.dsh.account.model.vo.classDetails;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class RegisteredCourse {
 
    private Long id;
 
    @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;
 
}