lxw
2023-08-22 3437771db860c4aa9d9b3b72e00a153115a825cc
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
package com.whyc.controller;
 
import com.whyc.dto.Login;
import com.whyc.pojo.Response;
import com.whyc.service.AirconditionerParamService;
import com.whyc.service.CarCameraService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
 
@Api(tags = "门禁")
@RestController
@RequestMapping("CarCamera")
public class CarCameraController {
    @Autowired
    private CarCameraService service;
 
 
    @ApiOperation(value = "获取门禁主机参数")
    @PostMapping("getCarCamera")
    public Response getCarCamera(@RequestBody Login login){
        return service.getCarCamera(login);
    }
}