package com.vci.ubcs.code.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.vci.ubcs.code.entity.CodeReferConfig;
|
import org.apache.ibatis.annotations.Param;
|
import org.springframework.data.domain.Pageable;
|
import java.util.List;
|
|
/**
|
* 参照配置表(CodeReferConfig)表数据库访问层
|
*
|
* @author makejava
|
* @since 2023-05-19 17:47:51
|
*/
|
public interface CodeReferConfigMapper extends BaseMapper<CodeReferConfig> {
|
|
/**
|
* 通过ID查询单条数据
|
*
|
* @param oid 主键
|
* @return 实例对象
|
*/
|
CodeReferConfig queryById(String oid);
|
|
/**
|
* 查询指定行数据
|
*
|
* @param codeReferConfig 查询条件
|
* @param pageable 分页对象
|
* @return 对象列表
|
*/
|
List<CodeReferConfig> queryAllByPage(CodeReferConfig codeReferConfig, @Param("pageable") Pageable pageable);
|
|
}
|