diff --git a/src/main/java/neatlogic/module/change/stephandler/utilhandler/ChangeCreateProcessUtilHandler.java b/src/main/java/neatlogic/module/change/stephandler/utilhandler/ChangeCreateProcessUtilHandler.java index df23bd408302ef8fbddbf55b653b97ab70578969..17290908814d3c14ca80b637b1f8aa5ba34c5b55 100644 --- a/src/main/java/neatlogic/module/change/stephandler/utilhandler/ChangeCreateProcessUtilHandler.java +++ b/src/main/java/neatlogic/module/change/stephandler/utilhandler/ChangeCreateProcessUtilHandler.java @@ -8,12 +8,14 @@ import neatlogic.framework.change.dto.ChangeStatusVo; import neatlogic.framework.change.dto.ChangeStepVo; import neatlogic.framework.change.dto.ChangeVo; import neatlogic.framework.common.dto.ValueTextVo; +import neatlogic.framework.notify.core.INotifyPolicyHandler; import neatlogic.framework.process.constvalue.ProcessTaskOperationType; import neatlogic.framework.process.constvalue.ProcessTaskStepOperationType; import neatlogic.framework.process.dto.ProcessTaskStepVo; import neatlogic.framework.process.operationauth.core.IOperationType; import neatlogic.framework.process.stephandler.core.ProcessStepInternalHandlerBase; import neatlogic.module.change.dao.mapper.ChangeMapper; +import neatlogic.module.change.notify.handler.ChangeCreateNotifyPolicyHandler; import neatlogic.module.change.service.ChangeService; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; @@ -111,6 +113,11 @@ public class ChangeCreateProcessUtilHandler extends ProcessStepInternalHandlerBa }; } + @Override + public Class getNotifyPolicyHandlerClass() { + return ChangeCreateNotifyPolicyHandler.class; + } + @Override public String[] getRegulateKeyList() { return new String[]{"authorityList", "notifyPolicyConfig", "actionConfig", "customButtonList", "customStatusList", "replaceableTextList", "workerPolicyConfig", "formSceneUuid", "formSceneName", "autoStart", "isNeedUploadFile", "isNeedContent", "isRequired", "commentTemplateId", "tagList"};