package cn.iocoder.yudao.module.crm.dal.mysql.product; import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX; import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX; import cn.iocoder.yudao.module.crm.controller.admin.product.vo.category.CrmProductCategoryListReqVO; import cn.iocoder.yudao.module.crm.dal.dataobject.product.CrmProductCategoryDO; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * CRM 产品分类 Mapper * * @author ZanGe丶 */ @Mapper public interface CrmProductCategoryMapper extends BaseMapperX { default List selectList(CrmProductCategoryListReqVO reqVO) { return selectList(new LambdaQueryWrapperX() .likeIfPresent(CrmProductCategoryDO::getName, reqVO.getName()) .eqIfPresent(CrmProductCategoryDO::getParentId, reqVO.getParentId()) .orderByDesc(CrmProductCategoryDO::getId)); } default CrmProductCategoryDO selectByParentIdAndName(Long parentId, String name) { return selectOne(CrmProductCategoryDO::getParentId, parentId, CrmProductCategoryDO::getName, name); } default Long selectCountByParentId(Long parentId) { return selectCount(CrmProductCategoryDO::getParentId, parentId); } }