New file |
| | |
| | | package com.dsh.account.model.vo.classDetails.classInsVo; |
| | | |
| | | import com.dsh.account.feignclient.competition.model.PurchaseRecordVo; |
| | | import com.dsh.account.feignclient.course.model.StuSessionDetailsVo; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class ClassDetailsInsVo { |
| | | |
| | | @ApiModelProperty(value = "学员id") |
| | | private Integer stuId; |
| | | |
| | | @ApiModelProperty(value = "学员头像") |
| | | private String stuImage; |
| | | |
| | | @ApiModelProperty(value = "学员姓名") |
| | | private String stuName; |
| | | |
| | | |
| | | @ApiModelProperty(value = "总学时数") |
| | | private Integer totalNums; |
| | | |
| | | @ApiModelProperty(value = "已扣学时数") |
| | | private Integer deductedNums; |
| | | |
| | | @ApiModelProperty(value = "剩余学时数") |
| | | private Integer remainingNums; |
| | | |
| | | @ApiModelProperty(value = "课包名称列表") |
| | | private List<StuSessionDetailsVo> sessionNames; |
| | | |
| | | @ApiModelProperty(value = "已扣课时数") |
| | | private Integer deductionClassHours; |
| | | |
| | | @ApiModelProperty(value = "课包列表") |
| | | private List<PurchaseRecordVo> details; |
| | | |
| | | } |