|
|
@@ -91,9 +91,9 @@ public class ReportUploadExcelTaskController extends BaseController {
|
|
|
*/
|
|
|
@Operation(summary = "导出任务中心-更新任务的未读变为已读状态", description = "导出任务中心-更新任务的未读变为已读状态")
|
|
|
@GetMapping(value = "/updateReadStatus")
|
|
|
- public HttpResult<?> updateReadStatus(@RequestParam(name="id",required=true) String id) {
|
|
|
+ public HttpResult<?> updateReadStatus(@RequestParam(name="userId",required=true) String userId) {
|
|
|
try{
|
|
|
- reportUploadExcelTaskService.uodateReadStatus(id);
|
|
|
+ reportUploadExcelTaskService.uodateReadStatus(userId);
|
|
|
}catch (Exception e){
|
|
|
return HttpResult.error(e.getMessage());
|
|
|
}
|