| | |
| | | */ |
| | | package com.vci.ubcs.code.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.vci.ubcs.code.entity.CodeKeyattrrepeatEntity; |
| | | import com.vci.ubcs.code.vo.CodeKeyattrrepeatVO; |
| | | import com.vci.ubcs.code.vo.pagemodel.CodeKeyAttrRepeatRuleVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 关键属性查重规则 服务类 |
| | |
| | | */ |
| | | IPage<CodeKeyattrrepeatVO> selectPlCodeKeyattrrepeatPage(IPage<CodeKeyattrrepeatVO> page, CodeKeyattrrepeatVO plCodeKeyattrrepeat); |
| | | |
| | | /** |
| | | * 主键批量获取关键数据查重规则 |
| | | * |
| | | * @param oidCollections 主键集合,但是受性能影响,建议一次查询不超过10000个 |
| | | * @return 关键数据查重规则显示对象 |
| | | */ |
| | | List<CodeKeyAttrRepeatRuleVO> listCodeKeyAttrRepeatRuleByOids(Collection<String> oidCollections) ; |
| | | |
| | | /** |
| | | * 批量数据对象转换为显示对象 |
| | | * @param codeKeyattrrepeatEntityS 数据对象列表 |
| | | * @return 显示对象 |
| | | */ |
| | | List<CodeKeyAttrRepeatRuleVO> codeKeyAttrRepeatRuleDO2VOs(Collection<CodeKeyattrrepeatEntity> codeKeyattrrepeatEntityS); |
| | | |
| | | /** |
| | | * 数据对象转换为显示对象 |
| | | * @param codeKeyattrrepeatEntity 数据对象 |
| | | * @return 显示对象 |
| | | */ |
| | | CodeKeyAttrRepeatRuleVO codeKeyAttrRepeatRuleDO2VO(CodeKeyattrrepeatEntity codeKeyattrrepeatEntity); |
| | | } |