| 1234567891011121314151617 |
- package com.template.api;
- import com.template.model.result.CommonResult;
- import io.swagger.annotations.ApiOperation;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestParam;
- @RequestMapping("/api/smartCarAccess")
- public interface SmartCarAccessControllerAPI {
- @GetMapping("/getPage")
- @ApiOperation(value = "驾驶舱——车闸通行记录", notes = "门禁通行记录", httpMethod = "GET")
- CommonResult getPage(@RequestParam Integer currentPage, @RequestParam Integer pageCount, String keyWord , String type, String startTime, String endTime);
- }
|