潘志宝
2024-09-09 ed81b7371e376df35448b81531d30dd9024bd44a
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
31
32
33
34
package com.iailab.module.infra.dal.mysql.demo;
 
import java.util.*;
 
import com.iailab.framework.common.pojo.PageResult;
import com.iailab.framework.mybatis.core.query.LambdaQueryWrapperX;
import com.iailab.framework.mybatis.core.mapper.BaseMapperX;
import com.iailab.module.infra.dal.dataobject.demo.InfraCategoryDO;
import org.apache.ibatis.annotations.Mapper;
import com.iailab.module.infra.controller.admin.demo.vo.*;
 
/**
 * 分类 Mapper
 *
 * @author iailab
 */
@Mapper
public interface InfraCategoryMapper extends BaseMapperX<InfraCategoryDO> {
 
    default List<InfraCategoryDO> selectList(InfraCategoryListReqVO reqVO) {
        return selectList(new LambdaQueryWrapperX<InfraCategoryDO>()
                .likeIfPresent(InfraCategoryDO::getName, reqVO.getName())
                .orderByDesc(InfraCategoryDO::getId));
    }
 
    default InfraCategoryDO selectByParentIdAndName(Long parentId, String name) {
        return selectOne(InfraCategoryDO::getParentId, parentId, InfraCategoryDO::getName, name);
    }
 
    default Long selectCountByParentId(Long parentId) {
        return selectCount(InfraCategoryDO::getParentId, parentId);
    }
 
}