Compare commits

..

No commits in common. "41d1f68bb026a3db7911c07b6e51055a81f03e91" and "5976b7a1da9d4f52bf6bb5612b0818ceb71d5f25" have entirely different histories.

3 changed files with 1 additions and 17 deletions

View File

@ -133,20 +133,6 @@ public class ZyInfoController extends JeecgController<ZyInfo, IZyInfoService> {
return Result.OK("编辑成功!");
}
/**
* 编辑
*
* @param zyInfo
* @return
*/
@AutoLog(value = "作业发布-发布")
@ApiOperation(value="作业发布-发布", notes="作业发布-发布")
@RequestMapping(value = "/release", method = {RequestMethod.PUT,RequestMethod.POST})
public Result<String> release(@RequestBody ZyInfo zyInfo) {
zyInfoService.updateById(zyInfo);
return Result.OK("发布成功!");
}
@ApiOperation(value="作业发布-通过id查询", notes="作业发布-通过id查询")
@GetMapping(value = "/editStudent")
public Result<ZyInfo> editStudent(@RequestParam(name="id",required=true) String id) {

View File

@ -124,8 +124,6 @@ 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,b.pdf_path as stuPdfPath
select a.*,b.id as stuId ,b.file_path as stuFilePath,b.score,b.wwxsl,b.nwxsl,b.aigcxsl
from zy_info a ,zy_info_student b
${ew.customSqlSegment}