Browse Source

修改首页公告展示问题

hlf 1 year ago
parent
commit
bc70d66949

+ 1 - 1
ims-service/ims-eval/src/main/java/com/ims/eval/controller/NoticeManagementController.java

@@ -201,7 +201,7 @@ public class NoticeManagementController {
 	 */
 	@GetMapping(value = "/circularDisplay")
 	public R circularDisplay(@RequestParam(value = "deptId") String deptId,
-							 @RequestParam(value = "noticeTitle") String noticeTitle,
+							 @RequestParam(value = "noticeTitle", required = false) String noticeTitle,
 							 @RequestParam(value = "beginDataTime", required = false) String beginDataTime,
 							 @RequestParam(value = "endDataTime", required = false) String endDataTime) {
 		List<EvaluationNotice> list = evaluationNoticeService.circularDisplay(deptId, noticeTitle, beginDataTime, endDataTime);