| | |
| | | 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; |
| | |
| | | @ApiModelProperty(value = "学员姓名") |
| | | private String stuName; |
| | | |
| | | @ApiModelProperty(value = "课时有效期(xxxx-xx-xx)") |
| | | private String periodOfValidity; |
| | | |
| | | @ApiModelProperty(value = "总学时数") |
| | | private Integer totalNums; |
| | |
| | | @ApiModelProperty(value = "课包名称列表") |
| | | private List<StuSessionDetailsVo> sessionNames; |
| | | |
| | | @ApiModelProperty(value = "已扣课时数") |
| | | private Integer deductionClassHours; |
| | | |
| | | @ApiModelProperty(value = "课包列表") |
| | | private List<ClassDataDetails> details; |
| | | private List<PurchaseRecordVo> details; |
| | | |
| | | } |