| | |
| | | package com.vci.ubcs.code.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.github.yulichang.base.MPJBaseMapper; |
| | | import com.vci.ubcs.code.dto.CodeReferConfigDTO; |
| | | import com.vci.ubcs.code.entity.CodeReferConfig; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.data.domain.Pageable; |
| | |
| | | /** |
| | | * 参照配置表(CodeReferConfig)表数据库访问层 |
| | | * |
| | | * @author makejava |
| | | * @author ludc |
| | | * @since 2023-05-19 17:47:51 |
| | | */ |
| | | public interface CodeReferConfigMapper extends BaseMapper<CodeReferConfig> { |
| | | public interface CodeReferConfigMapper extends MPJBaseMapper<CodeReferConfig> { |
| | | |
| | | /** |
| | | * 通过ID查询单条数据 |
| | |
| | | * 查询指定行数据 |
| | | * |
| | | * @param codeReferConfig 查询条件 |
| | | * @param pageable 分页对象 |
| | | * @param page 分页对象 |
| | | * @return 对象列表 |
| | | */ |
| | | List<CodeReferConfig> queryAllByPage(CodeReferConfig codeReferConfig, @Param("pageable") Pageable pageable); |
| | | IPage<CodeReferConfig> selectJoinPage(@Param("codeReferConfig") CodeReferConfig codeReferConfig, IPage page); |
| | | |
| | | } |
| | | |