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) { + + } +}