From cda74cda7ece9e046b0350a22017567a90702001 Mon Sep 17 00:00:00 2001 From: whyclxw <810412026@qq.com> Date: 星期三, 08 一月 2025 09:04:50 +0800 Subject: [PATCH] 区域管理员点击查看开锁操作记录--区域管理员 --- src/main/java/com/whyc/controller/AppController.java | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/whyc/controller/AppController.java b/src/main/java/com/whyc/controller/AppController.java index 5a634f9..a458ec9 100644 --- a/src/main/java/com/whyc/controller/AppController.java +++ b/src/main/java/com/whyc/controller/AppController.java @@ -1,9 +1,9 @@ package com.whyc.controller; import com.whyc.dto.Response; -import com.whyc.pojo.db_area.AuthiruzeInf; import com.whyc.service.AreaInfService; import com.whyc.service.AuthiruzeInfService; +import com.whyc.service.LockCtlLogService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; @@ -21,6 +21,10 @@ @Autowired private AreaInfService ainfService; + + @Autowired + private LockCtlLogService ctlLogService; + @ApiOperation(value = "鏅�氱敤鎴风櫥褰曟煡鐪嬭嚜宸辨巿鏉冭褰�--鏅�氱敤鎴�") @GetMapping("getAuthByUid") @@ -47,4 +51,10 @@ return ainfService.getlinfByAid(id); } + @ApiOperation(value = "鍖哄煙绠$悊鍛樼偣鍑绘煡鐪嬪紑閿佹搷浣滆褰�--鍖哄煙绠$悊鍛�") + @GetMapping("getCtlog") + public Response getCtlog(int pageNum, int pageSize){ + return ainfService.getCtlog(pageNum,pageSize); + } + } \ No newline at end of file -- Gitblit v1.9.1