|
@@ -616,7 +616,7 @@ public class DeptAssessmentDeclarationController {
|
|
|
*/
|
|
|
@GetMapping(value = "/participantsNumber/{id}")
|
|
|
public R participantsNumber(@PathVariable String id) {
|
|
|
- QueryWrapper<DeptAssessmentDeclarationComplete> qwComplete = new QueryWrapper<>();
|
|
|
+ /*QueryWrapper<DeptAssessmentDeclarationComplete> qwComplete = new QueryWrapper<>();
|
|
|
if (StringUtils.isNotEmpty(id)) {
|
|
|
qwComplete.lambda().eq(DeptAssessmentDeclarationComplete::getAssessmentDeclarationId, id);
|
|
|
}
|
|
@@ -630,7 +630,8 @@ public class DeptAssessmentDeclarationController {
|
|
|
return R.ok().data(countContent);
|
|
|
} else {
|
|
|
return R.error("未添加工作完成情况!");
|
|
|
- }
|
|
|
+ }*/
|
|
|
+ return R.ok();
|
|
|
}
|
|
|
|
|
|
/**
|