| 12345678910111213141516171819202122232425262728293031 |
- 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;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- @RequestMapping("/api/smartFaceDiscern")
- public interface SmartFaceDiscernControllerAPI {
- @GetMapping(value = "/track")
- @ApiOperation(value = "学生轨迹", notes = "学生轨迹", httpMethod = "GET")
- CommonResult track(@RequestParam Integer id, @RequestParam int dateTime);
- @GetMapping(value = "/access")
- @ApiOperation(value = "门禁管理",notes = "门禁管理",httpMethod = "GET")
- CommonResult access();
- @GetMapping(value = "/lastSevenDaysTrack")
- @ApiOperation(value = "日常轨迹",notes = "日常轨迹",httpMethod = "GET")
- CommonResult lastSevenDaysTrack(@RequestParam int userId);
- }
|