|
@@ -38,7 +38,6 @@ public class ExamPrintPlanSyncController {
|
|
|
|
|
|
/**
|
|
|
* 查询需要同步的命题任务
|
|
|
- *
|
|
|
*/
|
|
|
@ApiOperation(value = "印刷计划推送管理-推送数据查询")
|
|
|
@RequestMapping(value = "/list_sync", method = RequestMethod.POST)
|
|
@@ -57,7 +56,7 @@ public class ExamPrintPlanSyncController {
|
|
|
if (semesterId == null) {
|
|
|
throw ExceptionResultEnum.ERROR.exception("请选择学期");
|
|
|
}
|
|
|
- return ResultUtil.ok(examPrintPlanService.listSyncExamTask(semesterId, examId, orgId, cardType,syncStatus, courseCode, paperNumber, startTime, endTime, pageNumber, pageSize));
|
|
|
+ return ResultUtil.ok(examPrintPlanService.listSyncExamTask(semesterId, examId, orgId, cardType, syncStatus, courseCode, paperNumber, startTime, endTime, pageNumber, pageSize));
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -72,8 +71,8 @@ public class ExamPrintPlanSyncController {
|
|
|
@ApiResponses({@ApiResponse(code = 200, message = "返回信息", response = EditResult.class)})
|
|
|
@OperationLogDetail(customizedOperationType = CustomizedOperationTypeEnum.PUSH)
|
|
|
public Result checkSyncMode(@RequestBody SyncDataParam syncDataParam) {
|
|
|
- String orgCode = examPrintPlanService.checkSyncMode(syncDataParam);
|
|
|
- return ResultUtil.ok(orgCode,"");
|
|
|
+ examPrintPlanService.checkSyncMode(syncDataParam);
|
|
|
+ return ResultUtil.ok(true, "");
|
|
|
}
|
|
|
|
|
|
/**
|