From e16302f9d475c7cc4dd18c5abf1a23cb5502e362 Mon Sep 17 00:00:00 2001 From: whyclxw <810412026@qq.com> Date: 星期三, 28 五月 2025 14:57:56 +0800 Subject: [PATCH] 密码验证加- --- src/main/java/com/whyc/controller/BattAlarmDataVerifyController.java | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/whyc/controller/BattAlarmDataVerifyController.java b/src/main/java/com/whyc/controller/BattAlarmDataVerifyController.java index 45675ae..ef17c94 100644 --- a/src/main/java/com/whyc/controller/BattAlarmDataVerifyController.java +++ b/src/main/java/com/whyc/controller/BattAlarmDataVerifyController.java @@ -1,19 +1,20 @@ package com.whyc.controller; -import com.github.pagehelper.PageInfo; import com.whyc.dto.Response; import com.whyc.dto.paramter.AlarmPar; -import com.whyc.pojo.BattAlarmDataVerify; import com.whyc.service.BattAlarmDataVerifyService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.*; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("battAlarmDataVerify") @Api(tags = "鐢垫睜鍛婅纭") -public class BattAlarmDataVerifyController { +public class BattAlarmDataVerifyController extends BaseController{ @Autowired private BattAlarmDataVerifyService service; -- Gitblit v1.9.1