ludc
2023-05-23 b8886034cbd7a43911d6b24e322f604f557c1e02
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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);
 
}