| | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.io.UnsupportedEncodingException; |
| | | |
| | | @Api(tags = "门禁历史") |
| | | @RestController |
| | | @RequestMapping("CarCameraHis") |
| | |
| | | public Response getCarCameraHis(@RequestParam int carCameraId,@RequestParam int pageCurr,@RequestParam int pageSize){ |
| | | return service.getCarCameraHis(carCameraId,pageCurr,pageSize); |
| | | } |
| | | |
| | | @ApiOperation(value = "获取门禁历史数据(以人为主)") |
| | | @PostMapping("getCarCameraHis_people") |
| | | public Response getCarCameraHis_people(@RequestBody Login login) throws UnsupportedEncodingException, InterruptedException { |
| | | return service.getCarCameraHis_people(login); |
| | | } |
| | | } |