diff --git a/backend/mci-server/pom.xml b/backend/mci-server/pom.xml
new file mode 100644
index 0000000..f0eb930
--- /dev/null
+++ b/backend/mci-server/pom.xml
@@ -0,0 +1,71 @@
+
+
+ 4.0.0
+
+ com.sino
+ sino-mci-parent
+ 0.0.1-SNAPSHOT
+
+ mci-server
+ mci-server
+
+
+
+ com.sino
+ mci-shared
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.boot
+ spring-boot-starter-validation
+
+
+ org.springframework.boot
+ spring-boot-starter-data-redis
+
+
+ org.springframework.boot
+ spring-boot-starter-amqp
+
+
+ com.baomidou
+ mybatis-plus-boot-starter
+
+
+ com.mysql
+ mysql-connector-j
+
+
+ org.flywaydb
+ flyway-mysql
+
+
+ org.springframework.security
+ spring-security-crypto
+
+
+ org.projectlombok
+ lombok
+ true
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
\ No newline at end of file
diff --git a/backend/mci-server/src/main/java/com/sino/mci/MciServerApplication.java b/backend/mci-server/src/main/java/com/sino/mci/MciServerApplication.java
new file mode 100644
index 0000000..48f300f
--- /dev/null
+++ b/backend/mci-server/src/main/java/com/sino/mci/MciServerApplication.java
@@ -0,0 +1,12 @@
+package com.sino.mci;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class MciServerApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(MciServerApplication.class, args);
+ }
+}
\ No newline at end of file
diff --git a/backend/pom.xml b/backend/pom.xml
index 3e61a20..371e202 100644
--- a/backend/pom.xml
+++ b/backend/pom.xml
@@ -58,6 +58,11 @@
mybatis-plus-annotation
${mybatis-plus.version}
+
+ com.mysql
+ mysql-connector-j
+ 8.3.0
+