commit dc25aa947552691fe2c8f074db751bad63e7e7c2 Author: Bbt <2568197607@qq.com> Date: Tue Apr 23 17:11:17 2024 +0800 门磁对接 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