| | |
| | | package com.vci.ubcs.code.service; |
| | | |
| | | import com.github.yulichang.base.MPJBaseService; |
| | | import com.vci.ubcs.code.entity.CodeReferConfig; |
| | | import com.vci.ubcs.code.entity.CodeResembleRule; |
| | | import com.vci.ubcs.code.vo.pagemodel.CodeResembleRuleVO; |
| | | import com.vci.ubcs.starter.exception.VciBaseException; |
| | | |
| | | public interface ICodeResembleRuleService { |
| | | public interface ICodeResembleRuleService extends MPJBaseService<CodeResembleRule> { |
| | | CodeResembleRuleVO getObjectByOid(String codeResembleRuleOid); |
| | | } |
| | | |
| | | /** |
| | | * 数据对象转换为显示对象 |
| | | * @param codeResembleRuleDO 数据对象 |
| | | * @return 显示对象 |
| | | * @throws VciBaseException 拷贝属性出错的时候会抛出异常 |
| | | */ |
| | | CodeResembleRuleVO codeResembleRuleDO2VO(CodeResembleRule codeResembleRuleDO) throws VciBaseException; |
| | | |
| | | } |