| | |
| | | package com.ycl.platform.service.impl; |
| | | |
| | | import com.github.pagehelper.Page; |
| | | import com.github.pagehelper.PageHelper; |
| | | import com.ycl.platform.domain.entity.ImageResourceSecurityDetail; |
| | | import com.ycl.platform.domain.query.DataCenterQuery; |
| | | import com.ycl.platform.domain.result.HK.*; |
| | | import com.ycl.platform.domain.result.UY.MonitorQualifyResult; |
| | | import com.ycl.platform.domain.result.UY.OneMachineFileResult; |
| | | import com.ycl.platform.domain.result.UY.RecordMetaDSumResult; |
| | | import com.ycl.platform.domain.result.UY.VideoOnlineResult; |
| | | import com.ycl.platform.mapper.ImageResourceSecurityDetailMapper; |
| | | import com.ycl.platform.service.DataCenterService; |
| | | import com.ycl.system.Result; |
| | | import com.ycl.utils.MongoUtil; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.apache.commons.collections.CollectionUtils; |
| | | import org.springframework.data.domain.Sort; |
| | | import org.springframework.data.mongodb.core.MongoTemplate; |
| | | import org.springframework.data.mongodb.core.query.Criteria; |
| | | import org.springframework.data.mongodb.core.query.Query; |
| | | import org.springframework.data.mongodb.core.query.TextCriteria; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.Arrays; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Objects; |
| | | |
| | |
| | | public class DataCenterServiceImpl implements DataCenterService { |
| | | |
| | | private final MongoTemplate mongoTemplate; |
| | | |
| | | private final ImageResourceSecurityDetailMapper securityDetailMapper; |
| | | private final static String TIME_FIELD = "mongoCreateTime"; |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<OneMachineFileResult> videoPointOnlineRate(DataCenterQuery params) { |
| | | public Result videoPointOnlineRate(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, VideoOnlineResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<OneMachineFileResult> resultList = mongoTemplate.find(query, OneMachineFileResult.class); |
| | | return resultList; |
| | | List<VideoOnlineResult> resultList = mongoTemplate.find(query, VideoOnlineResult.class); |
| | | long count = mongoTemplate.count(new Query(), VideoOnlineResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("total", count); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<OneMachineFileResult> videoOneMachineDocumentRegister(DataCenterQuery params) { |
| | | public Result videoOneMachineDocumentRegister(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, OneMachineFileResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<OneMachineFileResult> resultList = mongoTemplate.find(query, OneMachineFileResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long nonNetwork = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("0")), OneMachineFileResult.class); |
| | | long network = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("1")), OneMachineFileResult.class); |
| | | long video = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/1/")), OneMachineFileResult.class); |
| | | long car = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/2/")), OneMachineFileResult.class); |
| | | long face = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/3/")), OneMachineFileResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(nonNetwork, network, video, car, face)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<OneMachineFileResult> videoOneMachineDocumentQualified(DataCenterQuery params) { |
| | | public Result videoOneMachineDocumentQualified(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, MonitorQualifyResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<OneMachineFileResult> resultList = mongoTemplate.find(query, OneMachineFileResult.class); |
| | | return resultList; |
| | | List<MonitorQualifyResult> resultList = mongoTemplate.find(query, MonitorQualifyResult.class); |
| | | // 统计数 |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", CollectionUtils.EMPTY_COLLECTION); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<OneMachineFileResult> videoAssessmentFileRatio(DataCenterQuery params) { |
| | | public Result videoAssessmentFileRatio(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, OneMachineFileResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<OneMachineFileResult> resultList = mongoTemplate.find(query, OneMachineFileResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long nonNetwork = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("0")), OneMachineFileResult.class); |
| | | long network = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("1")), OneMachineFileResult.class); |
| | | long video = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/1/")), OneMachineFileResult.class); |
| | | long car = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/2/")), OneMachineFileResult.class); |
| | | long face = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/3/")), OneMachineFileResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(nonNetwork, network, video, car, face)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<RecordMetaDSumResult> videoAvailabilityRate(DataCenterQuery params) { |
| | | public Result videoAvailabilityRate(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, RecordMetaDSumResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<RecordMetaDSumResult> resultList = mongoTemplate.find(query, RecordMetaDSumResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long one = mongoTemplate.count(new Query().addCriteria(Criteria.where("recordStatus").is("1")), OneMachineFileResult.class); |
| | | long two = mongoTemplate.count(new Query().addCriteria(Criteria.where("recordStatus").is("2")), OneMachineFileResult.class); |
| | | long three = mongoTemplate.count(new Query().addCriteria(Criteria.where("recordStatus").is("-1")), OneMachineFileResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(one, two, three)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<RecordMetaDSumResult> videoImportantPointAvailabilityRate(DataCenterQuery params) { |
| | | public Result videoImportantPointAvailabilityRate(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, RecordMetaDSumResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<RecordMetaDSumResult> resultList = mongoTemplate.find(query, RecordMetaDSumResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long one = mongoTemplate.count(new Query().addCriteria(Criteria.where("recordStatus").is("1")), OneMachineFileResult.class); |
| | | long two = mongoTemplate.count(new Query().addCriteria(Criteria.where("recordStatus").is("2")), OneMachineFileResult.class); |
| | | long three = mongoTemplate.count(new Query().addCriteria(Criteria.where("recordStatus").is("-1")), OneMachineFileResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(one, two, three)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @param params |
| | | * @return |
| | | */ |
| | | // TODO 返回数据对象更换 |
| | | @Override |
| | | public List<OneMachineFileResult> videoLabelingAccuracy(DataCenterQuery params) { |
| | | public Result videoLabelingAccuracy(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, OneMachineFileResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<OneMachineFileResult> resultList = mongoTemplate.find(query, OneMachineFileResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long nonNetwork = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("0")), OneMachineFileResult.class); |
| | | long network = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("1")), OneMachineFileResult.class); |
| | | long video = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/1/")), OneMachineFileResult.class); |
| | | long car = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/2/")), OneMachineFileResult.class); |
| | | long face = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/3/")), OneMachineFileResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(nonNetwork, network, video, car, face)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @param params |
| | | * @return |
| | | */ |
| | | // TODO 返回数据对象更换 |
| | | @Override |
| | | public List<OneMachineFileResult> videoImportantPointLabelingAccuracy(DataCenterQuery params) { |
| | | public Result videoImportantPointLabelingAccuracy(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, OneMachineFileResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<OneMachineFileResult> resultList = mongoTemplate.find(query, OneMachineFileResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long nonNetwork = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("0")), OneMachineFileResult.class); |
| | | long network = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("1")), OneMachineFileResult.class); |
| | | long video = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/1/")), OneMachineFileResult.class); |
| | | long car = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/2/")), OneMachineFileResult.class); |
| | | long face = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/3/")), OneMachineFileResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(nonNetwork, network, video, car, face)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @param params |
| | | * @return |
| | | */ |
| | | // TODO 返回数据对象更换 |
| | | @Override |
| | | public List<OneMachineFileResult> videoCheckTimeAccuracy(DataCenterQuery params) { |
| | | public Result videoCheckTimeAccuracy(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, OneMachineFileResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<OneMachineFileResult> resultList = mongoTemplate.find(query, OneMachineFileResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long nonNetwork = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("0")), OneMachineFileResult.class); |
| | | long network = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("1")), OneMachineFileResult.class); |
| | | long video = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/1/")), OneMachineFileResult.class); |
| | | long car = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/2/")), OneMachineFileResult.class); |
| | | long face = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/3/")), OneMachineFileResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(nonNetwork, network, video, car, face)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @param params |
| | | * @return |
| | | */ |
| | | // TODO 返回数据对象更换 |
| | | @Override |
| | | public List<OneMachineFileResult> videoImportantPointCheckTimeAccuracy(DataCenterQuery params) { |
| | | public Result videoImportantPointCheckTimeAccuracy(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, OneMachineFileResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<OneMachineFileResult> resultList = mongoTemplate.find(query, OneMachineFileResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long nonNetwork = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("0")), OneMachineFileResult.class); |
| | | long network = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("1")), OneMachineFileResult.class); |
| | | long video = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/1/")), OneMachineFileResult.class); |
| | | long car = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/2/")), OneMachineFileResult.class); |
| | | long face = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/3/")), OneMachineFileResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(nonNetwork, network, video, car, face)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @param params |
| | | * @return |
| | | */ |
| | | // TODO 返回数据对象更换 |
| | | @Override |
| | | public List<OneMachineFileResult> videoImportantPointOnlineRate(DataCenterQuery params) { |
| | | public Result videoImportantPointOnlineRate(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, OneMachineFileResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<OneMachineFileResult> resultList = mongoTemplate.find(query, OneMachineFileResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long nonNetwork = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("0")), OneMachineFileResult.class); |
| | | long network = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("1")), OneMachineFileResult.class); |
| | | long video = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/1/")), OneMachineFileResult.class); |
| | | long car = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/2/")), OneMachineFileResult.class); |
| | | long face = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/3/")), OneMachineFileResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(nonNetwork, network, video, car, face)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @param params |
| | | * @return |
| | | */ |
| | | // TODO 返回数据对象更换 |
| | | @Override |
| | | public List<OneMachineFileResult> videoImportantPointImageOnlineRate(DataCenterQuery params) { |
| | | public Result videoImportantPointImageOnlineRate(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, OneMachineFileResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<OneMachineFileResult> resultList = mongoTemplate.find(query, OneMachineFileResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long nonNetwork = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("0")), OneMachineFileResult.class); |
| | | long network = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("1")), OneMachineFileResult.class); |
| | | long video = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/1/")), OneMachineFileResult.class); |
| | | long car = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/2/")), OneMachineFileResult.class); |
| | | long face = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/3/")), OneMachineFileResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(nonNetwork, network, video, car, face)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<SnapshotDataMonitorResult> vehicleViewDockStable(DataCenterQuery params) { |
| | | public Result vehicleViewDockStable(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, SnapshotDataMonitorResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<SnapshotDataMonitorResult> resultList = mongoTemplate.find(query, SnapshotDataMonitorResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long one = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("1")), SnapshotDataMonitorResult.class); |
| | | long two = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("2")), SnapshotDataMonitorResult.class); |
| | | long three = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("3")), SnapshotDataMonitorResult.class); |
| | | long four = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("4")), SnapshotDataMonitorResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(one, two, three, four)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<SnapshotDataMonitorResult> vehiclePointOnlineRate(DataCenterQuery params) { |
| | | public Result vehiclePointOnlineRate(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, SnapshotDataMonitorResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<SnapshotDataMonitorResult> resultList = mongoTemplate.find(query, SnapshotDataMonitorResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long one = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("1")), SnapshotDataMonitorResult.class); |
| | | long two = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("2")), SnapshotDataMonitorResult.class); |
| | | long three = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("3")), SnapshotDataMonitorResult.class); |
| | | long four = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("4")), SnapshotDataMonitorResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(one, two, three, four)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<OneMachineFileResult> vehicleNetDeviceDirectoryConsistency(DataCenterQuery params) { |
| | | public Result vehicleNetDeviceDirectoryConsistency(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, OneMachineFileResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<OneMachineFileResult> resultList = mongoTemplate.find(query, OneMachineFileResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long nonNetwork = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("0")), OneMachineFileResult.class); |
| | | long network = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("1")), OneMachineFileResult.class); |
| | | long video = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/1/")), OneMachineFileResult.class); |
| | | long car = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/2/")), OneMachineFileResult.class); |
| | | long face = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/3/")), OneMachineFileResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(nonNetwork, network, video, car, face)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<CrossDetailResult> vehicleCollectionConsistency(DataCenterQuery params) { |
| | | public Result vehicleCollectionConsistency(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, CrossDetailResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<CrossDetailResult> resultList = mongoTemplate.find(query, CrossDetailResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long one = mongoTemplate.count(new Query().addCriteria(Criteria.where("lalType").is("1")), CrossDetailResult.class); |
| | | long two = mongoTemplate.count(new Query().addCriteria(Criteria.where("lalType").is("2")), CrossDetailResult.class); |
| | | long three = mongoTemplate.count(new Query().addCriteria(Criteria.where("lalType").is("3")), CrossDetailResult.class); |
| | | long four = mongoTemplate.count(new Query().addCriteria(Criteria.where("lalType").is("4")), CrossDetailResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(one, two, three, four)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<DataIntegrityMonitoringResult> vehicleCollectionDataIntegrity(DataCenterQuery params) { |
| | | public Result vehicleCollectionDataIntegrity(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, DataIntegrityMonitoringResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<DataIntegrityMonitoringResult> resultList = mongoTemplate.find(query, DataIntegrityMonitoringResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", CollectionUtils.EMPTY_COLLECTION); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<AttrRecognitionMonitorResult> vehicleCollectionDataCaptured(DataCenterQuery params) { |
| | | public Result vehicleCollectionDataCaptured(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, AttrRecognitionMonitorResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<AttrRecognitionMonitorResult> resultList = mongoTemplate.find(query, AttrRecognitionMonitorResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", CollectionUtils.EMPTY_COLLECTION); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<VehicleDeviceInspectionResult> vehicleClockAccuracy(DataCenterQuery params) { |
| | | public Result vehicleClockAccuracy(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, VehicleDeviceInspectionResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<VehicleDeviceInspectionResult> resultList = mongoTemplate.find(query, VehicleDeviceInspectionResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long one = mongoTemplate.count(new Query().addCriteria(Criteria.where("snapResult").is("1")), VehicleDeviceInspectionResult.class); |
| | | long two = mongoTemplate.count(new Query().addCriteria(Criteria.where("snapResult").is("2")), VehicleDeviceInspectionResult.class); |
| | | long four = mongoTemplate.count(new Query().addCriteria(Criteria.where("snapResult").is("4")), VehicleDeviceInspectionResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(one, two, four)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<SnapshotDelayMonitorResult> vehicleTimelyUploadAccuracy(DataCenterQuery params) { |
| | | public Result vehicleTimelyUploadAccuracy(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, SnapshotDelayMonitorResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<SnapshotDelayMonitorResult> resultList = mongoTemplate.find(query, SnapshotDelayMonitorResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", CollectionUtils.EMPTY_COLLECTION); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<PicAccessResult> vehicleUrlAccuracy(DataCenterQuery params) { |
| | | public Result vehicleUrlAccuracy(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, PicAccessResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<PicAccessResult> resultList = mongoTemplate.find(query, PicAccessResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", CollectionUtils.EMPTY_COLLECTION); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<VehicleDeviceSamplingResult> vehicleBigImgAccuracy(DataCenterQuery params) { |
| | | public Result vehicleBigImgAccuracy(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, VehicleDeviceSamplingResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<VehicleDeviceSamplingResult> resultList = mongoTemplate.find(query, VehicleDeviceSamplingResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", CollectionUtils.EMPTY_COLLECTION); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<SnapshotDataMonitorResult> faceViewDockStable(DataCenterQuery params) { |
| | | public Result faceViewDockStable(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, SnapshotDataMonitorResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<SnapshotDataMonitorResult> resultList = mongoTemplate.find(query, SnapshotDataMonitorResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long one = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("1")), SnapshotDataMonitorResult.class); |
| | | long two = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("2")), SnapshotDataMonitorResult.class); |
| | | long three = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("3")), SnapshotDataMonitorResult.class); |
| | | long four = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("4")), SnapshotDataMonitorResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(one, two, three, four)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @param params |
| | | * @return |
| | | */ |
| | | // TODO 更换响应结果 |
| | | @Override |
| | | public List<OneMachineFileResult> facePointOnlineRate(DataCenterQuery params) { |
| | | public Result facePointOnlineRate(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, SnapshotDataMonitorResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<OneMachineFileResult> resultList = mongoTemplate.find(query, OneMachineFileResult.class); |
| | | return resultList; |
| | | List<SnapshotDataMonitorResult> resultList = mongoTemplate.find(query, SnapshotDataMonitorResult.class); |
| | | // 统计数 |
| | | long one = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("1")), SnapshotDataMonitorResult.class); |
| | | long two = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("2")), SnapshotDataMonitorResult.class); |
| | | long three = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("3")), SnapshotDataMonitorResult.class); |
| | | long four = mongoTemplate.count(new Query().addCriteria(Criteria.where("resultType").is("4")), SnapshotDataMonitorResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(one, two, three, four)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<OneMachineFileResult> faceDirectoryConsistency(DataCenterQuery params) { |
| | | public Result faceDirectoryConsistency(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, OneMachineFileResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<OneMachineFileResult> resultList = mongoTemplate.find(query, OneMachineFileResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long nonNetwork = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("0")), OneMachineFileResult.class); |
| | | long network = mongoTemplate.count(new Query().addCriteria(Criteria.where("LWSX").is("1")), OneMachineFileResult.class); |
| | | long video = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/1/")), OneMachineFileResult.class); |
| | | long car = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/2/")), OneMachineFileResult.class); |
| | | long face = mongoTemplate.count(new Query().addCriteria(Criteria.where("SXJGNLX").regex("/3/")), OneMachineFileResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(nonNetwork, network, video, car, face)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<CrossDetailResult> faceCollectionConsistency(DataCenterQuery params) { |
| | | public Result faceCollectionConsistency(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, CrossDetailResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<CrossDetailResult> resultList = mongoTemplate.find(query, CrossDetailResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long one = mongoTemplate.count(new Query().addCriteria(Criteria.where("lalType").is("1")), CrossDetailResult.class); |
| | | long two = mongoTemplate.count(new Query().addCriteria(Criteria.where("lalType").is("2")), CrossDetailResult.class); |
| | | long three = mongoTemplate.count(new Query().addCriteria(Criteria.where("lalType").is("3")), CrossDetailResult.class); |
| | | long four = mongoTemplate.count(new Query().addCriteria(Criteria.where("lalType").is("4")), CrossDetailResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(one, two, three, four)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<MonitoringDetailResult> faceImgQualification(DataCenterQuery params) { |
| | | public Result faceImgQualification(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, MonitoringDetailResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<MonitoringDetailResult> resultList = mongoTemplate.find(query, MonitoringDetailResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long one = mongoTemplate.count(new Query().addCriteria(Criteria.where("lalType").is("1")), MonitoringDetailResult.class); |
| | | long two = mongoTemplate.count(new Query().addCriteria(Criteria.where("lalType").is("2")), MonitoringDetailResult.class); |
| | | long three = mongoTemplate.count(new Query().addCriteria(Criteria.where("lalType").is("3")), MonitoringDetailResult.class); |
| | | long four = mongoTemplate.count(new Query().addCriteria(Criteria.where("lalType").is("4")), MonitoringDetailResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(one, two, three, four)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<FaceDeviceInspectionResult> faceCapturesImagesAccuracy(DataCenterQuery params) { |
| | | public Result faceCapturesImagesAccuracy(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, FaceDeviceInspectionResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<FaceDeviceInspectionResult> resultList = mongoTemplate.find(query, FaceDeviceInspectionResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long one = mongoTemplate.count(new Query().addCriteria(Criteria.where("snapResult").is("1")), FaceDeviceInspectionResult.class); |
| | | long two = mongoTemplate.count(new Query().addCriteria(Criteria.where("snapResult").is("2")), FaceDeviceInspectionResult.class); |
| | | long four = mongoTemplate.count(new Query().addCriteria(Criteria.where("snapResult").is("4")), FaceDeviceInspectionResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(one, two, four)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<FaceDeviceInspectionResult> faceTimelyUpload(DataCenterQuery params) { |
| | | public Result faceTimelyUpload(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, FaceDeviceInspectionResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<FaceDeviceInspectionResult> resultList = mongoTemplate.find(query, FaceDeviceInspectionResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | long one = mongoTemplate.count(new Query().addCriteria(Criteria.where("snapResult").is("1")), FaceDeviceInspectionResult.class); |
| | | long two = mongoTemplate.count(new Query().addCriteria(Criteria.where("snapResult").is("2")), FaceDeviceInspectionResult.class); |
| | | long four = mongoTemplate.count(new Query().addCriteria(Criteria.where("snapResult").is("4")), FaceDeviceInspectionResult.class); |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", Arrays.asList(one, two, four)); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<FaceDeviceSamplingResult> faceAvailabilityOfLargeImg(DataCenterQuery params) { |
| | | public Result faceAvailabilityOfLargeImg(DataCenterQuery params) { |
| | | Query query = new Query(); |
| | | // 全文索引查询 |
| | | MongoUtil.fullText(query, params.getKeyword()); |
| | |
| | | ); |
| | | } |
| | | query.addCriteria(criteria); |
| | | long total = mongoTemplate.count(query, FaceDeviceSamplingResult.class); |
| | | query.with(Sort.by(Sort.Order.asc(TIME_FIELD))).skip(params.getSkipNum()).limit(Math.toIntExact(params.getPageSize())); |
| | | List<FaceDeviceSamplingResult> resultList = mongoTemplate.find(query, FaceDeviceSamplingResult.class); |
| | | return resultList; |
| | | // 统计数 |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("count", CollectionUtils.EMPTY_COLLECTION); |
| | | map.put("list", resultList); |
| | | return Result.ok().data(map).total(total); |
| | | } |
| | | /** |
| | | * 视频:视频图像资源安全管理 |
| | | * |
| | | * @param query |
| | | * @return |
| | | */ |
| | | @Override |
| | | public Result videoImageResourceSecurity(DataCenterQuery query) { |
| | | ImageResourceSecurityDetail imageResourceSecurityDetail = new ImageResourceSecurityDetail(); |
| | | Page<ImageResourceSecurityDetail> page = PageHelper.startPage(query.getPageNum(), query.getPageSize()); |
| | | securityDetailMapper.selectImageResourceSecurityDetailList(imageResourceSecurityDetail); |
| | | |
| | | return Result.ok().data(page.getResult()).total(page.getTotal()); |
| | | |
| | | } |
| | | } |