| | |
| | | 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; |
| | | |
| | |
| | | |
| | | /** |
| | | * 检查id编号是否重复 |
| | | * @param id 当前编号 |
| | | * @param codeRuleDTO 当前判断是否重复的对象 |
| | | * @return 返回false表示未重复 |
| | | */ |
| | | boolean checkCodeRuleRepeat(String id); |
| | | boolean checkCodeRuleRepeat(CodeRuleDTO codeRuleDTO); |
| | | |
| | | /** |
| | | * 校验编码规则的状态是否可以编辑或删除 |
| | |
| | | * @return 规则的显示对象 |
| | | */ |
| | | CodeRuleVO getObjectHasSecByOid(String codeRuleOid) throws VciBaseException; |
| | | |
| | | /** |
| | | * 检查相似编码规则,并返回对应的结果 |
| | | * @param oid 主键 |
| | | * @return 执行结果 |
| | | */ |
| | | R checkLikeCodeRule(String oid) throws VciBaseException; |
| | | |
| | | |
| | | } |