|
|
|
@ -18,8 +18,6 @@ import java.util.HashMap; |
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* |
|
|
|
|
* |
|
|
|
|
* @author |
|
|
|
|
* @email |
|
|
|
|
* @date 2020-08-19 16:07:02 |
|
|
|
@ -40,13 +38,17 @@ public class ProjectRecordController implements ProjectRcordControllerApi { |
|
|
|
|
ProjectRecordVo recordVo = new ProjectRecordVo(); |
|
|
|
|
if (!StringUtils.isEmpty(month)) { |
|
|
|
|
recordVo.setMonth(month); |
|
|
|
|
}if(!StringUtils.isEmpty(startTime)) { |
|
|
|
|
} |
|
|
|
|
if (!StringUtils.isEmpty(startTime)) { |
|
|
|
|
recordVo.setStartTime(startTime); |
|
|
|
|
}if(!StringUtils.isEmpty(endTime)) { |
|
|
|
|
} |
|
|
|
|
if (!StringUtils.isEmpty(endTime)) { |
|
|
|
|
recordVo.setEndTime(endTime); |
|
|
|
|
}if(!StringUtils.isEmpty(recordState)) { |
|
|
|
|
} |
|
|
|
|
if (!StringUtils.isEmpty(recordState)) { |
|
|
|
|
recordVo.setRecordstate(recordState); |
|
|
|
|
}if(!StringUtils.isEmpty(condition)){ |
|
|
|
|
} |
|
|
|
|
if (!StringUtils.isEmpty(condition)) { |
|
|
|
|
recordVo.setCondition(condition); |
|
|
|
|
} |
|
|
|
|
PageUtils page1 = projectRecordService.querySchoolRecord(page, size, recordVo); |
|
|
|
@ -56,6 +58,7 @@ public class ProjectRecordController implements ProjectRcordControllerApi { |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 用户端虚拟仿真实验记录 |
|
|
|
|
* |
|
|
|
|
* @param page |
|
|
|
|
* @param size |
|
|
|
|
* @param |
|
|
|
@ -70,6 +73,7 @@ public class ProjectRecordController implements ProjectRcordControllerApi { |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 科大用户端虚拟仿真实验记录 |
|
|
|
|
* |
|
|
|
|
* @param page |
|
|
|
|
* @param size |
|
|
|
|
* @param |
|
|
|
@ -84,6 +88,7 @@ public class ProjectRecordController implements ProjectRcordControllerApi { |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 用户端教学实验记录 |
|
|
|
|
* |
|
|
|
|
* @param page |
|
|
|
|
* @param size |
|
|
|
|
* @param userid |
|
|
|
@ -91,14 +96,15 @@ public class ProjectRecordController implements ProjectRcordControllerApi { |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
@GetMapping("/user/experimentRecord") |
|
|
|
|
public R getUserExperimentscore(@RequestParam Integer page,@RequestParam Integer size,@RequestParam Integer userid){ |
|
|
|
|
PageUtils page1 = projectRecordService.queryExperimentPage(page,size,userid); |
|
|
|
|
public R getUserExperimentscore(@RequestParam Integer page, @RequestParam Integer size, @RequestParam Integer userid, @RequestParam Integer systemId) { |
|
|
|
|
PageUtils page1 = projectRecordService.queryExperimentPage(page, size, userid, systemId); |
|
|
|
|
|
|
|
|
|
return R.ok().put("data", page1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 个人实验预览 |
|
|
|
|
* |
|
|
|
|
* @param userId |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
@ -112,6 +118,7 @@ public class ProjectRecordController implements ProjectRcordControllerApi { |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 个人实验预览 |
|
|
|
|
* |
|
|
|
|
* @param userid |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
@ -125,6 +132,7 @@ public class ProjectRecordController implements ProjectRcordControllerApi { |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 导出个人虚拟仿真实验记录 |
|
|
|
|
* |
|
|
|
|
* @param response |
|
|
|
|
* @param userId |
|
|
|
|
* @throws Exception |
|
|
|
@ -138,6 +146,7 @@ public class ProjectRecordController implements ProjectRcordControllerApi { |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 导出个人教学实验记录 |
|
|
|
|
* |
|
|
|
|
* @param response |
|
|
|
|
* @param userId |
|
|
|
|
* @throws Exception |
|
|
|
|