From ad277967625acac1b9a23b1d421d88b3fe10e6b7 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Tue, 19 Nov 2024 18:36:47 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E5=90=8E=E7=AB=AF-?= =?UTF-8?q?=E5=AE=9A=E5=88=B6=E5=8C=96=E8=A1=A8=E5=8D=95=E6=8E=A7=E4=BB=B6?= =?UTF-8?q?-=E8=87=AA=E5=8A=A8=E5=8C=96=E6=9C=8D=E5=8A=A1=E8=A1=A8?= =?UTF-8?q?=E5=8D=95=E5=AE=B9=E5=99=A8=E6=8E=A7=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1293524304101376]后端-定制化表单控件-自动化服务表单容器控件 http://192.168.0.96:8090/demo/rdm.html#/task-detail/939050947543040/939050947543050/1293524304101376 --- .../constvalue/AutoexecFormHandler.java | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/main/java/neatlogic/framework/autoexec/constvalue/AutoexecFormHandler.java diff --git a/src/main/java/neatlogic/framework/autoexec/constvalue/AutoexecFormHandler.java b/src/main/java/neatlogic/framework/autoexec/constvalue/AutoexecFormHandler.java new file mode 100644 index 00000000..758dbb41 --- /dev/null +++ b/src/main/java/neatlogic/framework/autoexec/constvalue/AutoexecFormHandler.java @@ -0,0 +1,43 @@ +/* + * 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.autoexec.constvalue; + +import neatlogic.framework.form.constvalue.IFormHandler; + +public enum AutoexecFormHandler implements IFormHandler { + + FORMRESOURECES("formautoexecservice", "自动化服务组件"), + ; + + private final String handler; + private final String handlerName; + + AutoexecFormHandler(String handler, String handlerName) { + this.handler = handler; + this.handlerName = handlerName; + } + @Override + public String getHandler() { + return handler; + } + + @Override + public String getHandlerName() { + return handlerName; + } +} -- Gitee