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 { default List selectList(IndItemCategoryReqVO reqVO) { return selectList(new LambdaQueryWrapperX() .likeIfPresent(IndItemCategoryEntity::getLabel, reqVO.getLabel())); } }