附件详情页导出
parent
4d39b51529
commit
0fa378166e
@ -0,0 +1,17 @@
|
|||||||
|
package com.ibeetl.jlw.entity.dto;
|
||||||
|
|
||||||
|
import com.ibeetl.admin.core.entity.BaseEntity;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 我的课程-题库-做题日志 附件作业 导出
|
||||||
|
* gen by Spring Boot2 Admin 2022-10-05
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper=false)
|
||||||
|
public class TeacherOpenCourseHomeWorkLogDTO extends BaseEntity {
|
||||||
|
|
||||||
|
private String questionSettingIdPlural;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package com.ibeetl.jlw.entity.dto;
|
||||||
|
|
||||||
|
import com.ibeetl.admin.core.web.query.PageParam;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 我的课程-题库-做题日志 附件作业 分页参数
|
||||||
|
* gen by Spring Boot2 Admin 2022-10-05
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper=false)
|
||||||
|
public class TeacherOpenCourseHomeWorkLogPageDTO extends PageParam {
|
||||||
|
|
||||||
|
private String questionSettingIdPlural;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,43 @@
|
|||||||
|
package com.ibeetl.jlw.entity.vo;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import com.ibeetl.admin.core.entity.BaseEntity;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
import lombok.experimental.FieldNameConstants;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 我的课程-题库-做题日志 附件作业 导出
|
||||||
|
* gen by Spring Boot2 Admin 2022-10-05
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper=false)
|
||||||
|
@FieldNameConstants
|
||||||
|
@ExcelIgnoreUnannotated
|
||||||
|
public class TeacherOpenCourseHomeWorkLogExportVO extends BaseEntity {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 题目配置ID
|
||||||
|
*/
|
||||||
|
private String questionSettingId;
|
||||||
|
|
||||||
|
@ExcelProperty("学号")
|
||||||
|
private String studentSn;
|
||||||
|
|
||||||
|
@ExcelProperty("姓名")
|
||||||
|
private String studentName;
|
||||||
|
|
||||||
|
@ExcelProperty("报告名称")
|
||||||
|
private String questionSettingName;
|
||||||
|
|
||||||
|
// @ExcelProperty("报告下载")
|
||||||
|
|
||||||
|
private String questionSettingFile;
|
||||||
|
|
||||||
|
@ExcelProperty("教师评语")
|
||||||
|
private String questionLogReply;
|
||||||
|
|
||||||
|
@ExcelProperty("报告得分")
|
||||||
|
private String studentScore;
|
||||||
|
}
|
Loading…
Reference in New Issue