From 7028274cbf2912d88058025b54ad2aea404fdb47 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Thu, 16 May 2024 10:10:23 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E5=A4=84=E7=90=86=E8=8A=82=E7=82=B9=E4=B8=AD=E7=9A=84=E8=AF=B7?= =?UTF-8?q?=E6=B1=82=E5=BC=82=E5=B8=B8=E4=BF=A1=E6=81=AF=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E5=9C=A8=E5=B7=A5=E5=8D=95=E4=B8=8A=E6=96=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1157772727517184]自动处理节点中的请求异常信息显示在工单上方 http://192.168.0.96:8090/demo/rdm.html#/story-detail/939050947543040/939050947543042/1157772727517184 --- .../constvalue/ProcessTaskStepRemindType.java | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/main/java/neatlogic/framework/process/constvalue/ProcessTaskStepRemindType.java b/src/main/java/neatlogic/framework/process/constvalue/ProcessTaskStepRemindType.java index dfa812bb..cc4a1d37 100755 --- a/src/main/java/neatlogic/framework/process/constvalue/ProcessTaskStepRemindType.java +++ b/src/main/java/neatlogic/framework/process/constvalue/ProcessTaskStepRemindType.java @@ -1,19 +1,19 @@ package neatlogic.framework.process.constvalue; import neatlogic.framework.process.stepremind.core.IProcessTaskStepRemindType; -import neatlogic.framework.util.I18n; public enum ProcessTaskStepRemindType implements IProcessTaskStepRemindType { - BACK("back", new I18n("回退提醒"), new I18n("回退了【processTaskStepName】,原因")), - REDO("redo", new I18n("回退提醒"), new I18n("回退了工单,原因")), - TRANSFER("transfer", new I18n("转交提醒"), new I18n("转交提醒")), - ERROR("error", new I18n("异常提醒"), new I18n("异常提醒")); + BACK("back", "回退提醒", "回退了【processTaskStepName】,原因"), + REDO("redo", "回退提醒", "回退了工单,原因"), + TRANSFER("transfer", "转交提醒", ""), + ERROR("error", "异常提醒", ""), + AUTOMATIC_ERROR("automaticerror", "自动处理异常提醒", ""); private String value; - private I18n text; - private I18n title; + private String text; + private String title; - private ProcessTaskStepRemindType(String value, I18n text, I18n title) { + ProcessTaskStepRemindType(String value, String text, String title) { this.value = value; this.text = text; this.title = title; @@ -26,12 +26,12 @@ public enum ProcessTaskStepRemindType implements IProcessTaskStepRemindType { @Override public String getText() { - return text.toString(); + return text; } @Override public String getTitle() { - return title.toString(); + return title; } -- Gitee