SmartCarAccessControllerAPI.java 692 B

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