| | |
| | | package com.dsh.course.model.vo.response; |
| | | |
| | | |
| | | import com.dsh.course.model.CoursePackagePaymentConfigVo; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class CourseDetailsResponse { |
| | |
| | | private String time; |
| | | @ApiModelProperty("1常规 2假期 3体验") |
| | | private Integer type; |
| | | @ApiModelProperty("学员的ids") |
| | | private List<Integer> stuIds; |
| | | @ApiModelProperty("选择的课时数") |
| | | private Integer chooseHours; |
| | | @ApiModelProperty("课时套餐") |
| | | private List<CoursePackagePaymentConfigVo> list; |
| | | |
| | | |
| | | } |