From 0516dbff12796302dbd40fbbdbff5246b2a83cd2 Mon Sep 17 00:00:00 2001 From: lroyia Date: Fri, 20 Oct 2023 09:37:08 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E7=BB=93=E6=9E=84=E5=88=9D?= =?UTF-8?q?=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 ++ pom.xml | 29 +++++++++++++++++++++ src/main/java/io/lroyia/ApplicationRun.java | 14 ++++++++++ 3 files changed, 45 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/io/lroyia/ApplicationRun.java diff --git a/.gitignore b/.gitignore index 9154f4c..58ceb0c 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,8 @@ *.zip *.tar.gz *.rar +.idea +target # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..2664a0b --- /dev/null +++ b/pom.xml @@ -0,0 +1,29 @@ + + + + 4.0.0 + + io.lroyia + market-ent-classift-demo + 1.0.0-SNAPSHOT + jar + ${project.artifactId} + https://www.chinaweal.com.cn + 市场主体分类示例 + + 21 + true + UTF-8 + 21 + 21 + 21 + false + + + + + + + + diff --git a/src/main/java/io/lroyia/ApplicationRun.java b/src/main/java/io/lroyia/ApplicationRun.java new file mode 100644 index 0000000..cec7267 --- /dev/null +++ b/src/main/java/io/lroyia/ApplicationRun.java @@ -0,0 +1,14 @@ +package io.lroyia; + +/** + * 程序入口 + * + * @author lroyia + * @since 2023/10/20 9:33 + **/ +public class ApplicationRun { + + public static void main(String[] args) { + + } +}