| | |
| | | |
| | | import com.alibaba.fastjson2.JSONObject; |
| | | import com.ycl.platform.domain.param.UY.*; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.cloud.openfeign.SpringQueryMap; |
| | | import org.springframework.stereotype.Component; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestHeader; |
| | | |
| | | /** |
| | | * @author gonghl |
| | |
| | | * @return |
| | | */ |
| | | @GetMapping("/api/v1/app/osdMonitor/list") |
| | | JSONObject osdMonitorList(@SpringQueryMap OsdMonitorParam param); |
| | | JSONObject osdMonitorList(@SpringQueryMap OsdMonitorParam param, @RequestHeader("tenantId") String tenantId); |
| | | |
| | | /** |
| | | * 图像检测诊断结果 |
| | |
| | | */ |
| | | @GetMapping("/api/v1/app/report/vqd/detail/list") |
| | | JSONObject videoQuality(@SpringQueryMap VideoQualityParam param); |
| | | |
| | | /** |
| | | * 优云获取token接口 |
| | | * |
| | | * @param param |
| | | * @return |
| | | */ |
| | | @PostMapping(value = "/tenant/api/vi/user/login",headers = "No-Need-To-Token=true") |
| | | JSONObject getToken(@RequestBody UYTokenParam param); |
| | | } |