QueryCourseTreeExerciseDTO.java
321 Bytes
package com.meishu.dto.exercise;
import lombok.Data;
@Data
public class QueryCourseTreeExerciseDTO {
private Integer pageSize;
private Integer pageNum;
private String title;
private Integer difficulty;
private String exerciseType;
private Long courseId;
private Long courseTreeId;
}