Procházet zdrojové kódy

日志记录调整

hanzhiwei před 2 roky
rodič
revize
73f20ee5a2

+ 1 - 1
zd-modules/zd-modules-laboratory/src/main/java/com/zd/laboratory/controller/WarningNoticeLogController.java

@@ -90,7 +90,7 @@ public class WarningNoticeLogController extends AbstractController {
 
     @PostMapping("/appList")
     @ApiOperation("小程序查询预警通知列表")
-    public ResultData appList(QueryAppWarningLogParam queryAppWarningLogParam){
+    public ResultData appList(@RequestBody QueryAppWarningLogParam queryAppWarningLogParam){
         Page<LinkedHashMap<LocalDate, List<WarningNoticeLogVO>>> VOPage = new Page<LinkedHashMap<LocalDate, List<WarningNoticeLogVO>>>();
         Page<WarningNoticeLog> page = warningNoticeLogService.page(new Page<WarningNoticeLog>(queryAppWarningLogParam.getPageNum(), queryAppWarningLogParam.getPageSize()), new LambdaQueryWrapper<WarningNoticeLog>().eq(WarningNoticeLog::getIsDeleted,Boolean.FALSE).orderByDesc(WarningNoticeLog::getCreateTime));
         List<WarningNoticeLog> records = page.getRecords();