ExamsVO.java
357 Bytes
package com.meishu.vo.exam;
import com.meishu.vo.student.StudentVO;
import lombok.Data;
import java.util.List;
@Data
public class ExamsVO {
private Long id;
private String examName;
private String startDate;
private String endDate;
private Long paperId;
private String paperName;
private List<StudentVO> studentVOS;
}