| | |
| | | }) |
| | | @PostMapping(path = "some", consumes = MediaType.APPLICATION_JSON_VALUE) |
| | | @SsoAop() |
| | | public BaseResponse<QueryResultVo<List<VoVideo>>> some(CameraQo queryQo){ |
| | | public BaseResponse<QueryResultVo<List<VoVideo>>> some(VideoQo queryQo){ |
| | | try { |
| | | ViYsApp ysApp = this.ysSv.selectSingleton() ; |
| | | if(ysApp == null){ |
File was renamed from pipIrr-platform/pipIrr-web/pipIrr-web-remote/src/main/java/com/dy/pipIrrRemote/video/CameraQo.java |
| | |
| | | @AllArgsConstructor |
| | | @Builder |
| | | @Schema(name = "视频监控查询条件") |
| | | public class CameraQo extends QueryConditionVo { |
| | | public class VideoQo extends QueryConditionVo { |
| | | } |
| | |
| | | * @param queryQo 查询条件值对象 |
| | | * @return 实体记录列表 |
| | | */ |
| | | public QueryResultVo<List<VoCamera>> some(CameraQo queryQo, int pageSize) { |
| | | public QueryResultVo<List<VoCamera>> some(VideoQo queryQo, int pageSize) { |
| | | Map<String, Object> params = (Map<String, Object>) PojoUtils.generalize(queryQo); |
| | | Long itemTotal = dao.selectTotal(params); |
| | | |