ludc
2023-07-11 0aa0bbdfde221a46019f90a245e40d6b57fd251b
Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/service/ICodeRuleService.java
@@ -24,7 +24,6 @@
import com.vci.ubcs.code.vo.pagemodel.CodeRuleVO;
import com.vci.ubcs.starter.exception.VciBaseException;
import com.vci.ubcs.starter.web.pagemodel.BladeQueryObject;
import org.springblade.core.log.exception.ServiceException;
import org.springblade.core.mp.support.Query;
import org.springblade.core.tool.api.R;
@@ -50,10 +49,10 @@
   /**
    * 检查id编号是否重复
    * @param id 当前编号
    * @param codeRuleDTO 当前判断是否重复的对象
    * @return 返回false表示未重复
    */
   boolean checkCodeRuleRepeat(String id);
   boolean checkCodeRuleRepeat(CodeRuleDTO codeRuleDTO);
   /**
    * 校验编码规则的状态是否可以编辑或删除
@@ -160,4 +159,13 @@
    * @return 规则的显示对象
    */
   CodeRuleVO getObjectHasSecByOid(String codeRuleOid) throws VciBaseException;
   /**
    * 检查相似编码规则,并返回对应的结果
    * @param oid 主键
    * @return 执行结果
    */
   R checkLikeCodeRule(String oid) throws VciBaseException;
}