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; @ApiModelProperty(value = "课程类型") private Integer courseType; @ApiModelProperty(value = "是否过滤分配课时 1过滤,0不过滤") private Integer isAble; }