xiejun
2025-01-22 d9183aa80ae17d36b79dda48c6b1d7fa22a80ee3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.vci.ubcs.code.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.vci.ubcs.code.entity.CodeSrchCondConfig;
import org.apache.ibatis.annotations.Param;
import org.springframework.data.domain.Pageable;
import java.util.List;
 
/**
 * 引用码段,参照配置界面,查询条件配置表(CodeSrchCondConfig)表数据库访问层
 *
 * @author ludc
 * @since 2023-05-19 17:58:56
 */
public interface CodeSrchCondConfigMapper extends BaseMapper<CodeSrchCondConfig> {
 
}