diff --git a/.idea/ecology_htxc.iml b/.idea/ecology_htxc.iml
new file mode 100644
index 0000000..b1138b5
--- /dev/null
+++ b/.idea/ecology_htxc.iml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000..6560a98
--- /dev/null
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..c350197
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..0636556
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..c468c27
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,72 @@
+
+
+ 4.0.0
+ com.htsc.ecology
+ ecology-hr-core
+ 1.0.0
+
+
+ 1.8
+ 1.8
+ UTF-8
+
+
+
+
+
+ ${basedir}/dependency/classbean
+
+
+ ${basedir}/src/main/resources
+
+ *.*
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+ 3.6.1
+
+
+ -verbose
+ -bootclasspath
+ ${java.home}${file.separator}lib${file.separator}rt.jar${path.separator}${java.home}${file.separator}lib${file.separator}jce.jar
+ -extdirs
+ ${basedir}${file.separator}dependency${file.separator}lib${path.separator}${basedir}${file.separator}dependency${file.separator}lib-new${path.separator}${basedir}${file.separator}dependency${file.separator}classbean${path.separator}${java.home}${file.separator}lib${path.separator}${java.home}${file.separator}lib${file.separator}ext
+
+
+
+ org.projectlombok
+ lombok
+ 1.18.12
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-jar-plugin
+ 2.6
+
+
+ package
+
+ jar
+
+
+ ${project.build.outputDirectory}
+ ecology-hr-core
+ ${project.build.directory}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/main/java/com/customization/htsc/autoremind/RequestSubmitErrorRemindCmd.java b/src/main/java/com/customization/htsc/autoremind/RequestSubmitErrorRemindCmd.java
new file mode 100644
index 0000000..2571eaa
--- /dev/null
+++ b/src/main/java/com/customization/htsc/autoremind/RequestSubmitErrorRemindCmd.java
@@ -0,0 +1,104 @@
+package com.customization.htsc.autoremind;
+
+import com.engine.core.cfg.annotation.CommandDynamicProxy;
+import com.engine.core.interceptor.AbstractCommandProxy;
+import com.engine.core.interceptor.Command;
+import com.engine.workflow.cmd.requestForm.RequestSubmitCmd;
+import com.engine.workflow.constant.requestForm.RequestExecuteType;
+import com.engine.workflow.entity.requestForm.RequestOperationResultBean;
+import weaver.general.BaseBean;
+import weaver.general.Util;
+import weaver.hrm.User;
+import javax.servlet.http.HttpServletRequest;
+import java.util.Map;
+
+
+@CommandDynamicProxy(target = RequestSubmitCmd.class, desc = "流程提交报错提醒系统管理员")
+public class RequestSubmitErrorRemindCmd extends AbstractCommandProxy