whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.whyc.controller;
 
import com.whyc.dto.Response;
import com.whyc.dto.paramter.AlarmPar;
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.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 extends BaseController{
 
    @Autowired
    private BattAlarmDataVerifyService service;
 
    @PostMapping("page")
    @ApiOperation("查询分页")
    public Response<Object> getPage(@RequestBody AlarmPar param){
        return service.getPage(param);
    }
 
}