Jay
2024-11-25 ee9f604388a3e77d3f4654e326f3976552e7f532
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.iailab.module.data.video.dao;
 
import com.iailab.framework.common.pojo.PageResult;
import com.iailab.framework.mybatis.core.mapper.BaseMapperX;
import com.iailab.framework.mybatis.core.query.LambdaQueryWrapperX;
import com.iailab.framework.tenant.core.db.dynamic.TenantDS;
import com.iailab.module.data.video.controller.admin.nvr.vo.NvrPageReqVO;
import com.iailab.module.data.video.entity.NvrEntity;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年03月06日
 */
@TenantDS
@Mapper
public interface NvrDao extends BaseMapperX<NvrEntity> {
 
    default PageResult<NvrEntity> selectPage(NvrPageReqVO pageReqVO) {
        return selectPage(pageReqVO, new LambdaQueryWrapperX<NvrEntity>()
                .eqIfPresent(NvrEntity::getBrand, pageReqVO.getBrand())
                .likeIfPresent(NvrEntity::getDevice, pageReqVO.getDevice())
                .likeIfPresent(NvrEntity::getIp, pageReqVO.getIp())
                .likeIfPresent(NvrEntity::getCode, pageReqVO.getCode())
                .likeIfPresent(NvrEntity::getName, pageReqVO.getName())
                .orderByDesc(NvrEntity::getId));
    }
 
}