| | |
| | | public class StudyWeekDTO extends StudyDTO { |
| | | |
| | | @ApiModelProperty("完成后可获积分数") |
| | | private Long totalIntegral; |
| | | private Integer totalIntegral; |
| | | |
| | | @ApiModelProperty("所属季度") |
| | | private Integer quarter; |
| | |
| | | @ApiModelProperty("study表Id") |
| | | private String id; |
| | | |
| | | @ApiModelProperty("能否进入周目学习") |
| | | private Boolean canStudy; |
| | | |
| | | public StudyWeekDTO(Integer week, Integer type, Integer quarter, String title, Integer total,Boolean canStudy) { |
| | | super.setWeek(week); |
| | | super.setType(type); |
| | | this.quarter = quarter; |
| | | this.title = title; |
| | | this.totalIntegral = total; |
| | | this.canStudy = canStudy; |
| | | } |
| | | } |