潘志宝
2024-12-15 bbe7acfbe5a4c08d6edc91eaf81dcecf9d630e18
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
package com.iailab.module.data.ind.category.dao;
 
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.ind.category.entity.IndItemCategoryEntity;
import com.iailab.module.data.ind.category.vo.IndItemCategoryReqVO;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年09月10日
 */
@TenantDS
@Mapper
public interface IndItemCategoryDao extends BaseMapperX<IndItemCategoryEntity> {
 
    default List<IndItemCategoryEntity> selectList(IndItemCategoryReqVO reqVO) {
        return selectList(new LambdaQueryWrapperX<IndItemCategoryEntity>()
                .likeIfPresent(IndItemCategoryEntity::getLabel, reqVO.getLabel()));
    }
 
}