From fa9b7984a46683164941749a440facc2b3cbe228 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Tue, 20 Aug 2024 15:22:16 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20IT=E6=9C=8D=E5=8A=A1-?= =?UTF-8?q?=E9=80=9A=E7=9F=A5=E7=AD=96=E7=95=A5=E6=A8=A1=E6=9D=BF=E4=B8=AD?= =?UTF-8?q?=E6=AD=A5=E9=AA=A4=E5=81=9C=E7=95=99=E6=97=B6=E9=97=B4=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E7=B1=BB=E5=9E=8B=E5=BA=94=E8=AF=A5=E6=98=AF=E5=AD=97?= =?UTF-8?q?=E7=AC=A6=E4=B8=B2=EF=BC=8C=E8=80=8C=E4=B8=8D=E6=98=AF=E6=95=B0?= =?UTF-8?q?=E7=BB=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1227508467335168]IT服务-通知策略模板中步骤停留时间参数类型应该是字符串,而不是数组 http://192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1227508467335168 --- .../process/notify/constvalue/ProcessTaskStepNotifyParam.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/neatlogic/framework/process/notify/constvalue/ProcessTaskStepNotifyParam.java b/src/main/java/neatlogic/framework/process/notify/constvalue/ProcessTaskStepNotifyParam.java index c4b9f09c..efd04dba 100755 --- a/src/main/java/neatlogic/framework/process/notify/constvalue/ProcessTaskStepNotifyParam.java +++ b/src/main/java/neatlogic/framework/process/notify/constvalue/ProcessTaskStepNotifyParam.java @@ -41,7 +41,7 @@ public enum ProcessTaskStepNotifyParam implements INotifyParam { "\t\t\t\t\n" + "\t\t\t"), STEPWORKER("stepWorker", new I18n("步骤处理人"), ParamType.STRING), - STEPSTAYTIME("stepStayTime", new I18n("步骤停留时间"), ParamType.ARRAY), + STEPSTAYTIME("stepStayTime", new I18n("步骤停留时间"), ParamType.STRING), REASON("reason", new I18n("原因"), ParamType.STRING), PROCESS_TASK_STEP_PAUSE_CONTENT("processTaskStepPauseContent", new I18n("步骤暂停原因"), ParamType.STRING), PROCESS_TASK_STEP_RECOVER_CONTENT("processTaskStepRecoverContent", new I18n("步骤恢复原因"), ParamType.STRING), -- Gitee