GetPaperExerciseVO.java
360 Bytes
package com.subsidy.vo.exercise;
import lombok.Data;
@Data
public class GetPaperExerciseVO {
private Long id;
private String exerciseType;
private Long courseId;
private String difficulty;
private String title;
private String items;
private String rightAnswer;
private String detail;
private Integer orderNo;
}