| | |
| | | package com.vci.ubcs.code.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.vci.ubcs.code.entity.CodeFixedValue; |
| | | import com.vci.ubcs.code.vo.pagemodel.CodeFixedValueVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.data.domain.Page; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 固定码段的码值数据操作层 |
| | |
| | | */ |
| | | public interface CodeFixedValueMapper extends BaseMapper<CodeFixedValue> { |
| | | |
| | | /** |
| | | * 自定义分页查询 |
| | | * @param codeFixedValueVO |
| | | * @param page |
| | | * @return |
| | | */ |
| | | List<CodeFixedValue> selectByPage(@Param("codeFixedValueVO") CodeFixedValueVO codeFixedValueVO, IPage<CodeFixedValueVO> page); |
| | | |
| | | /** |
| | | * 多条codefixedsecoid的分页查询 |
| | | * @return |
| | | */ |
| | | List<CodeFixedValue> selectByPageByCodeFixedSecOid(@Param("secOids") Collection<String> secOids, IPage<CodeFixedValueVO> page); |
| | | |
| | | |
| | | |
| | | } |