学生作业增加预览

This commit is contained in:
曹磊 2024-05-24 20:42:17 +08:00
parent 998bc77d99
commit 41d1f68bb0
2 changed files with 3 additions and 1 deletions

View File

@ -124,6 +124,8 @@ public class ZyInfo implements Serializable {
@TableField(exist = false)
private String stuFilePath;
@TableField(exist = false)
private String stuPdfPath;
@TableField(exist = false)
private String score;
@TableField(exist = false)
private String wtjnum;

View File

@ -3,7 +3,7 @@
<mapper namespace="org.jeecg.modules.kc.zyInfo.mapper.ZyInfoMapper">
<select id="stuList" resultType="org.jeecg.modules.kc.zyInfo.entity.ZyInfo">
select a.*,b.id as stuId ,b.file_path as stuFilePath,b.score,b.wwxsl,b.nwxsl,b.aigcxsl
select a.*,b.id as stuId ,b.file_path as stuFilePath,b.score,b.wwxsl,b.nwxsl,b.aigcxsl,b.pdf_path as stuPdfPath
from zy_info a ,zy_info_student b
${ew.customSqlSegment}