whyclxw
2025-02-08 139f7015c2373a5bba03a7d66045cf40faa1728c
src/main/java/com/whyc/controller/LockHisController.java
@@ -25,4 +25,12 @@
        Response res=service.getLockHis(lockId,startTime,endTime,pageNum,pageSize);
        return res;
    }
    @ApiOperation("实时界面点击查看历史信息")
    @GetMapping("getLockHisWithReal")
    public Response getLockHisWithReal(@RequestParam int lockId, @RequestParam String startTime, @RequestParam String endTime) throws ParseException, InterruptedException {
        Response res=service.getLockHisWithReal(lockId,startTime,endTime);
        return res;
    }
}