From 2ea172880f80be855d212470f00eb1601ed425d2 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Thu, 13 Nov 2025 14:27:53 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E8=A1=A8=E5=8D=95?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1552833097203712]表单组件优化 http://192.168.0.96:8090/demo/rdm.html#/story-detail/939050947543040/939050947543042/1552833097203712 --- .../constvalue/AutoexecFormHandler.java | 38 ------------------- 1 file changed, 38 deletions(-) delete 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 deleted file mode 100644 index 305470d2..00000000 --- a/src/main/java/neatlogic/framework/autoexec/constvalue/AutoexecFormHandler.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * - * Copyright (C) 2025 TechSure Co., Ltd. All Rights Reserved. - * This file is part of the NeatLogic software. - * Licensed under the NeatLogic Sustainable Use License (NSUL), Version 4.x – 2025. - * You may use this file only in compliance with the License. - * See the LICENSE file distributed with this work for the full license text. - * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * - */ - -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