Merge remote-tracking branch 'origin/master'
| | |
| | | private Integer pageSize; |
| | | |
| | | /** |
| | | * 行政区域 |
| | | */ |
| | | private String arealayerno; |
| | | |
| | | /** |
| | | * 异常类型 |
| | | */ |
| | | private String code = "1,2,3"; |
| | |
| | | |
| | | import com.ycl.platform.domain.result.BaseResult; |
| | | import lombok.Data; |
| | | import org.springframework.data.mongodb.core.annotation.Collation; |
| | | import org.springframework.data.mongodb.core.mapping.Document; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | |
| | | * @date:2024/8/8 20:36 |
| | | */ |
| | | @Data |
| | | @Collation("uy_image_detection") |
| | | @Document(collation = "uy_image_detection") |
| | | public class ImageDetectionResult extends BaseResult { |
| | | |
| | | /** |
| | |
| | | JSONObject oneMachineFile(@SpringQueryMap OneMachineFileParam oneMachineFileParam); |
| | | |
| | | /** |
| | | * 图像检测 |
| | | * 图像监测 |
| | | * |
| | | * @param imageDetectionParam 请求参数 |
| | | * @return |
| | | */ |
| | | @GetMapping("/api/v1/vqdMonitor/list") |
| | | @GetMapping("/videomon/api/v1/app/vqdMonitor/list") |
| | | JSONObject imageDetection(@SpringQueryMap ImageDetectionParam imageDetectionParam); |
| | | |
| | | /** |
| | |
| | | ImageDetectionParam param = new ImageDetectionParam(); |
| | | param.setPageNum(ApiConstants.PageNo); |
| | | param.setPageSize(ApiConstants.PageSize); |
| | | param.setArealayerno(ApiConstants.AreaNo); |
| | | JSONObject jsonObject = uyClient.imageDetection(param); |
| | | if (jsonObject != null) { |
| | | log.info("数据格式" + jsonObject); |