From 5feef5a9a5e4af92b2ca7b51d9ea299521a77438 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Mon, 15 Apr 2024 12:33:20 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20ProcessTaskCreatePublicS?= =?UTF-8?q?erviceImpl=E6=9C=8D=E5=8A=A1=E5=B1=82=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E6=94=AF=E6=8C=81=E5=A4=96=E9=83=A8=E6=A8=A1=E5=9D=97=E8=B0=83?= =?UTF-8?q?=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1135377392304128]ProcessTaskCreatePublicServiceImpl服务层接口支持外部模块调用 http://192.168.0.96:8090/demo/rdm.html#/story-detail/939050947543040/939050947543042/1135377392304128 --- ...ocessTaskCreatePublicCrossoverService.java | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/main/java/neatlogic/framework/process/crossover/IProcessTaskCreatePublicCrossoverService.java diff --git a/src/main/java/neatlogic/framework/process/crossover/IProcessTaskCreatePublicCrossoverService.java b/src/main/java/neatlogic/framework/process/crossover/IProcessTaskCreatePublicCrossoverService.java new file mode 100644 index 00000000..c20ae959 --- /dev/null +++ b/src/main/java/neatlogic/framework/process/crossover/IProcessTaskCreatePublicCrossoverService.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 com.alibaba.fastjson.JSONObject; +import neatlogic.framework.crossover.ICrossoverService; + +public interface IProcessTaskCreatePublicCrossoverService extends ICrossoverService { + /** + * 创建工单 + * + * @param paramObj 创建工单所需参数 + * @return + * @throws Exception + */ + JSONObject createProcessTask(JSONObject paramObj) throws Exception; +} -- Gitee