潘志宝
2024-12-15 bbe7acfbe5a4c08d6edc91eaf81dcecf9d630e18
提交 | 用户 | 时间
f1162e 1 package com.iailab.module.data.ind.category.dao;
2
3 import com.iailab.framework.mybatis.core.mapper.BaseMapperX;
4 import com.iailab.framework.mybatis.core.query.LambdaQueryWrapperX;
5 import com.iailab.framework.tenant.core.db.dynamic.TenantDS;
6 import com.iailab.module.data.ind.category.entity.IndItemCategoryEntity;
7 import com.iailab.module.data.ind.category.vo.IndItemCategoryReqVO;
8 import org.apache.ibatis.annotations.Mapper;
9
10 import java.util.List;
11
12 /**
13  * @author PanZhibao
14  * @Description
15  * @createTime 2024年09月10日
16  */
17 @TenantDS
18 @Mapper
19 public interface IndItemCategoryDao extends BaseMapperX<IndItemCategoryEntity> {
20
21     default List<IndItemCategoryEntity> selectList(IndItemCategoryReqVO reqVO) {
22         return selectList(new LambdaQueryWrapperX<IndItemCategoryEntity>()
23                 .likeIfPresent(IndItemCategoryEntity::getLabel, reqVO.getLabel()));
24     }
25
26 }