From 0e2d6c68b3a4e0152e855d08f97e47e0354a4f9a Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Tue, 24 Sep 2024 18:48:03 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E5=9B=BE=E9=85=8D=E7=BD=AE=E6=95=B0=E6=8D=AE=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E8=BD=AC=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1252130927640576]流程图配置数据结构转换 http://192.168.0.96:8090/demo/rdm.html#/story-detail/939050947543040/939050947543042/1252130927640576 --- .../crossover/IProcessCrossoverService.java | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/main/java/neatlogic/framework/process/crossover/IProcessCrossoverService.java diff --git a/src/main/java/neatlogic/framework/process/crossover/IProcessCrossoverService.java b/src/main/java/neatlogic/framework/process/crossover/IProcessCrossoverService.java new file mode 100644 index 00000000..4fb98fe0 --- /dev/null +++ b/src/main/java/neatlogic/framework/process/crossover/IProcessCrossoverService.java @@ -0,0 +1,32 @@ +/* + * Copyright (C) 2024 深圳极向量科技有限公司 All Rights Reserved. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package neatlogic.framework.process.crossover; + +import neatlogic.framework.crossover.ICrossoverService; +import neatlogic.framework.process.dto.ProcessVo; +import neatlogic.framework.process.exception.process.ProcessNameRepeatException; + +public interface IProcessCrossoverService extends ICrossoverService { + /** + * 保存流程图数据 + * @param processVo + * @return + * @throws ProcessNameRepeatException + */ + int saveProcess(ProcessVo processVo) throws ProcessNameRepeatException; +} -- Gitee