From dc25aa947552691fe2c8f074db751bad63e7e7c2 Mon Sep 17 00:00:00 2001
From: Bbt <2568197607@qq.com>
Date: Tue, 23 Apr 2024 17:11:17 +0800
Subject: [PATCH] =?UTF-8?q?=E9=97=A8=E7=A3=81=E5=AF=B9=E6=8E=A5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.idea/.gitignore | 8 ++++
.idea/encodings.xml | 8 ++++
.idea/kotlinc.xml | 6 +++
.idea/misc.xml | 14 +++++++
.idea/vcs.xml | 6 +++
pom.xml | 39 ++++++++++++++++++++
src/main/java/com/doormagnet/DoorMagnet.java | 17 +++++++++
7 files changed, 98 insertions(+)
create mode 100644 .idea/.gitignore
create mode 100644 .idea/encodings.xml
create mode 100644 .idea/kotlinc.xml
create mode 100644 .idea/misc.xml
create mode 100644 .idea/vcs.xml
create mode 100644 pom.xml
create mode 100644 src/main/java/com/doormagnet/DoorMagnet.java
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..35410ca
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# 默认忽略的文件
+/shelf/
+/workspace.xml
+# 基于编辑器的 HTTP 客户端请求
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/.idea/encodings.xml b/.idea/encodings.xml
new file mode 100644
index 0000000..63574ec
--- /dev/null
+++ b/.idea/encodings.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml
new file mode 100644
index 0000000..2d95299
--- /dev/null
+++ b/.idea/kotlinc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..132404b
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /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..beb6396
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,39 @@
+
+
+ 4.0.0
+
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.7.5
+
+
+ com.doormagnet
+ doormagnet
+ 1.0-SNAPSHOT
+
+
+
+ 8
+ 8
+ UTF-8
+
+
+
+ org.springframework.boot
+ spring-boot-starter
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+
+
+ cn.hutool
+ hutool-all
+ 5.8.18
+
+
+
+
\ No newline at end of file
diff --git a/src/main/java/com/doormagnet/DoorMagnet.java b/src/main/java/com/doormagnet/DoorMagnet.java
new file mode 100644
index 0000000..9d8c7b6
--- /dev/null
+++ b/src/main/java/com/doormagnet/DoorMagnet.java
@@ -0,0 +1,17 @@
+package com.doormagnet;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+/*
+ * @User $USER
+ * @Time $DATE $TIME
+ *
+ */
+@SpringBootApplication
+public class DoorMagnet {
+ public static void main(String[] args) {
+ SpringApplication.run(DoorMagnet.class);
+ System.out.println("门磁对接程序");
+ }
+}
\ No newline at end of file