package com.whyc.controller;
|
|
import com.whyc.constant.YamlProperties;
|
import com.whyc.dto.Response;
|
import io.swagger.annotations.Api;
|
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.RestController;
|
|
/**
|
* 人脸识别
|
*/
|
@RequestMapping("face")
|
@RestController
|
@Api(tags = "人脸识别")
|
public class FaceController {
|
|
@GetMapping("activeOnline")
|
@ApiOperation(value = "在线激活人脸识别引擎",notes = "只需要刚开始时调用一次,会导致appId与硬件设备绑定,必须有外部网络,否则激活会失败!" +
|
"后续使用无需再调用激活,可以离线使用")
|
public Response activeOnline(){
|
|
return null;
|
}
|
|
|
}
|