diff --git a/.idea/compiler.xml b/.idea/compiler.xml
index 2592ef2..1eab03a 100644
--- a/.idea/compiler.xml
+++ b/.idea/compiler.xml
@@ -10,6 +10,7 @@
+
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 84f2720..48f96b2 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -2,12 +2,11 @@
-
-
-
+
+
+
-
-
+
@@ -15,6 +14,7 @@
+
@@ -28,20 +28,22 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
-
+
+
+
+
+
@@ -79,6 +81,8 @@
+
+
@@ -90,10 +94,10 @@
-
-
-
-
+
+
+
+
@@ -112,25 +116,25 @@
-
+
-
+
-
+
-
+
@@ -138,11 +142,24 @@
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -157,6 +174,10 @@
+
+
+
+
@@ -166,6 +187,11 @@
+
@@ -177,7 +203,7 @@
-
+
@@ -191,8 +217,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -207,7 +247,7 @@
1709705326078
-
+
1709706040716
@@ -230,11 +270,18 @@
1709706840536
-
+
+ 1709707145456
+
+
+
+ 1709707145456
+
+
-
+
@@ -246,8 +293,9 @@
-
+
+
@@ -281,7 +329,8 @@
-
+
+
@@ -356,25 +405,134 @@
-
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
-
-
+
+
+
+
+
+
-
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Spring
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Spring|bctask
+
+
+
+
+
+
+
+
+
+
+
+ Maven: ch.qos.logback:logback-classic:1.2.12
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bctask/pom.xml b/bctask/pom.xml
new file mode 100644
index 0000000..4d8744f
--- /dev/null
+++ b/bctask/pom.xml
@@ -0,0 +1,28 @@
+
+
+
+ mis
+ bc.mm
+ 1.0.01
+
+ 4.0.0
+
+ bctask
+
+ 定时任务等
+
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-quartz
+
+
+
+
\ No newline at end of file
diff --git a/bctask/src/main/java/bc/mm/mis/task/BcTaskApplication.java b/bctask/src/main/java/bc/mm/mis/task/BcTaskApplication.java
new file mode 100644
index 0000000..736002e
--- /dev/null
+++ b/bctask/src/main/java/bc/mm/mis/task/BcTaskApplication.java
@@ -0,0 +1,31 @@
+package bc.mm.mis.task;
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+import org.springframework.boot.CommandLineRunner;
+import org.springframework.boot.WebApplicationType;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.builder.SpringApplicationBuilder;
+
+@SpringBootApplication
+public class BcTaskApplication implements CommandLineRunner {
+ protected static final Log log = LogFactory.getLog(BcTaskApplication.class);
+ /**
+ *
+ * @param args
+ */
+ public static void main(String[] args){
+ new SpringApplicationBuilder(BcTaskApplication.class)
+ .web(WebApplicationType.NONE)
+ .run(args);
+ }
+ /**
+ * spring boot启动后,会进入该方法
+ * @param args
+ * @throws Exception
+ */
+ @Override
+ public void run(String... args) throws Exception {
+ log.info("i am bc task!!pls get out.");
+ }
+}
diff --git a/pom.xml b/pom.xml
index cf111d3..55b84a5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -13,6 +13,7 @@
bcws
bcagent
bccommon
+ bctask
bc platform