diff --git a/online-taxi-public/.idea/compiler.xml b/online-taxi-public/.idea/compiler.xml
index 7236a92..fb507fd 100644
--- a/online-taxi-public/.idea/compiler.xml
+++ b/online-taxi-public/.idea/compiler.xml
@@ -9,10 +9,11 @@
-
-
+
+
+
@@ -22,6 +23,7 @@
+
diff --git a/online-taxi-public/.idea/encodings.xml b/online-taxi-public/.idea/encodings.xml
index fc87592..0e7bf39 100644
--- a/online-taxi-public/.idea/encodings.xml
+++ b/online-taxi-public/.idea/encodings.xml
@@ -5,6 +5,7 @@
+
diff --git a/online-taxi-public/pom.xml b/online-taxi-public/pom.xml
index 9700873..e9a40b3 100644
--- a/online-taxi-public/pom.xml
+++ b/online-taxi-public/pom.xml
@@ -21,6 +21,7 @@
service-passenger-user
servcie-price
service-map
+ service-driver-user
diff --git a/online-taxi-public/service-driver-user/pom.xml b/online-taxi-public/service-driver-user/pom.xml
new file mode 100644
index 0000000..914e4dd
--- /dev/null
+++ b/online-taxi-public/service-driver-user/pom.xml
@@ -0,0 +1,32 @@
+
+
+ 4.0.0
+
+ com.taxi
+ online-taxi-public
+ 1.0-SNAPSHOT
+
+
+ service-driver-user
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+
+ com.baomidou
+ mybatis-plus-boot-starter
+ 3.4.3.1
+
+
+
+ mysql
+ mysql-connector-java
+
+
+
+
\ No newline at end of file
diff --git a/online-taxi-public/service-driver-user/src/main/java/com/taxi/servicedriveruser/ServiceDriverUserApplication.java b/online-taxi-public/service-driver-user/src/main/java/com/taxi/servicedriveruser/ServiceDriverUserApplication.java
new file mode 100644
index 0000000..1e0b9fe
--- /dev/null
+++ b/online-taxi-public/service-driver-user/src/main/java/com/taxi/servicedriveruser/ServiceDriverUserApplication.java
@@ -0,0 +1,12 @@
+package com.taxi.servicedriveruser;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class ServiceDriverUserApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(ServiceDriverUserApplication.class);
+ }
+}
diff --git a/online-taxi-public/service-driver-user/src/main/java/com/taxi/servicedriveruser/controller/TestController.java b/online-taxi-public/service-driver-user/src/main/java/com/taxi/servicedriveruser/controller/TestController.java
new file mode 100644
index 0000000..f6ec73a
--- /dev/null
+++ b/online-taxi-public/service-driver-user/src/main/java/com/taxi/servicedriveruser/controller/TestController.java
@@ -0,0 +1,13 @@
+package com.taxi.servicedriveruser.controller;
+
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+@RestController
+public class TestController {
+
+ @GetMapping("/test")
+ public String test(){
+ return "service-driver-user";
+ }
+}
diff --git a/online-taxi-public/service-driver-user/src/main/resources/application.yaml b/online-taxi-public/service-driver-user/src/main/resources/application.yaml
new file mode 100644
index 0000000..7323e76
--- /dev/null
+++ b/online-taxi-public/service-driver-user/src/main/resources/application.yaml
@@ -0,0 +1,15 @@
+server:
+ port: 8086
+
+spring:
+ datasource:
+ driver-class-name: com.mysql.cj.jdbc.Driver
+ url: jdbc:mysql://localhost:3306/service-price?characterEncoding=utf-8&serverTimezone=GMT%2B8
+ username: root
+ password: topsun123
+# cloud:
+# nacos:
+# discovery:
+# server-addr: 127.0.0.1:8848
+ application:
+ name: service-driver-user
\ No newline at end of file
diff --git a/online-taxi-public/service-driver-user/target/classes/application.yaml b/online-taxi-public/service-driver-user/target/classes/application.yaml
new file mode 100644
index 0000000..7323e76
--- /dev/null
+++ b/online-taxi-public/service-driver-user/target/classes/application.yaml
@@ -0,0 +1,15 @@
+server:
+ port: 8086
+
+spring:
+ datasource:
+ driver-class-name: com.mysql.cj.jdbc.Driver
+ url: jdbc:mysql://localhost:3306/service-price?characterEncoding=utf-8&serverTimezone=GMT%2B8
+ username: root
+ password: topsun123
+# cloud:
+# nacos:
+# discovery:
+# server-addr: 127.0.0.1:8848
+ application:
+ name: service-driver-user
\ No newline at end of file
diff --git a/online-taxi-public/端口管理.md b/online-taxi-public/端口管理.md
new file mode 100644
index 0000000..70058bd
--- /dev/null
+++ b/online-taxi-public/端口管理.md
@@ -0,0 +1,18 @@
+
+
+服务名|端口号
+---- | ----
+api-passenger|8081
+service-verificationcode|8082
+service-passenger-user|8083
+service-price|8084
+service-map|8085
+service-driver-user|8086
+
+
+
+
+
+
+
+