From 8619f9ccceb6e7fbd096a42ad0b94032428c94c6 Mon Sep 17 00:00:00 2001 From: zhangyu Date: Wed, 22 May 2024 10:07:48 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9B=B8=E5=85=B3=E6=96=B9=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 8 ++ .idea/compiler.xml | 18 +++ .idea/encodings.xml | 11 ++ .idea/jarRepositories.xml | 40 ++++++ .idea/misc.xml | 12 ++ .idea/uiDesigner.xml | 124 ++++++++++++++++++ .idea/vcs.xml | 6 + README.md | 2 + .../target/classes/banner.txt | 8 ++ .../target/classes/bootstrap-dev.yml | 16 +++ .../target/classes/bootstrap.yml | 14 ++ .../parties/RelatedPartiesApplication.class | Bin 0 -> 1155 bytes 12 files changed, 259 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/uiDesigner.xml create mode 100644 .idea/vcs.xml create mode 100644 README.md create mode 100644 hbt-related-parties-biz/target/classes/banner.txt create mode 100644 hbt-related-parties-biz/target/classes/bootstrap-dev.yml create mode 100644 hbt-related-parties-biz/target/classes/bootstrap.yml create mode 100644 hbt-related-parties-biz/target/classes/com/hbt/related/parties/RelatedPartiesApplication.class diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..7b9aaf4 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..5920703 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..815de71 --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..0c1b5d4 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,12 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..2b63946 --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ 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/README.md b/README.md new file mode 100644 index 0000000..a9c65e5 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# hbt-related-parties + diff --git a/hbt-related-parties-biz/target/classes/banner.txt b/hbt-related-parties-biz/target/classes/banner.txt new file mode 100644 index 0000000..76d7384 --- /dev/null +++ b/hbt-related-parties-biz/target/classes/banner.txt @@ -0,0 +1,8 @@ +Spring Boot Version: ${spring-boot.version} +Spring Application Name: ${spring.application.name} + _ _ _ + | | | | | | + | |__ | |__ | |_ ______ ___ __ _ ___ ___ + | '_ \| '_ \| __|______/ __| / _` | / __| / __| + | | | | |_) | |_ \__ \ | (_| | \__ \ \__ \ + |_| |_|_.__/ \__| |___/ \__,_| |___/ |___/ diff --git a/hbt-related-parties-biz/target/classes/bootstrap-dev.yml b/hbt-related-parties-biz/target/classes/bootstrap-dev.yml new file mode 100644 index 0000000..39db42b --- /dev/null +++ b/hbt-related-parties-biz/target/classes/bootstrap-dev.yml @@ -0,0 +1,16 @@ +# Spring +spring: + cloud: + nacos: + username: nacos + password: zkhbt888 + discovery: + # 服务注册地址 + server-addr: ${nacos.ip}:8848 + config: + # 配置中心地址 + server-addr: ${nacos.ip}:8848 + # 配置文件格式 + file_extension: yml + # 共享配置 + shared-dataids: application-${spring.profiles.active}.${spring.cloud.nacos.config.file_extension} diff --git a/hbt-related-parties-biz/target/classes/bootstrap.yml b/hbt-related-parties-biz/target/classes/bootstrap.yml new file mode 100644 index 0000000..23704a6 --- /dev/null +++ b/hbt-related-parties-biz/target/classes/bootstrap.yml @@ -0,0 +1,14 @@ +# Tomcat +server: + port: 9405 +# Spring +spring: + application: + # 应用名称 + name: hbt-related-parties-zy + profiles: + # 环境配置 + active: dev + +nacos: + ip: 192.168.1.211 diff --git a/hbt-related-parties-biz/target/classes/com/hbt/related/parties/RelatedPartiesApplication.class b/hbt-related-parties-biz/target/classes/com/hbt/related/parties/RelatedPartiesApplication.class new file mode 100644 index 0000000000000000000000000000000000000000..0e2c005833a8c075474cb845352c54ca4c30ac99 GIT binary patch literal 1155 zcma)5OHUI~6#i~06l#T99*PgF@3uZBJ`y!GCfLZvMhP{zaN}*c3>Q0do0&TzI}@W( z5))P$A3<4|xYGEDq6zPIWy<^ednHYzyJC&3*ZC}M-jo+ z2)0GB9XndkgPqMtMzIUKBiO^xbVk}zpJixBr3V?pIW;60+VavC7d@*eoXfmeCQBl( zO1wPC9qH?TjA1<@U54ZNlCq4EqBa~+=2{FH74B#$Tw|c7_t(_kN~J7ITuWtV3CiNq zX6Q;?&5!aM+$eL~Gz!|0wwVp6aL1(L?Q6Ihq6OtSCDA8+ZawS59PukNbPss8mX;Wl zt|a!owyktPgX*7LCQnUR$~Ih4@*Jth4Za*^oVWe1bDpb}l~eYxG^v5pdF7afTk#nW zJKPdu%DHZo%E}ueDTS?#Lg38#rq#`#`U`c8o2GEq11;3t#{$@;)BY#nf$=^eO*Je{fD zc|ZT~^TO-tg~_|~&mL4KrmK^0suQo~?@d-Go+p#ZpSPc+zJ2&HeT{x7aVi->CWeDJ z#1LOugiFOyQPK>Vwa&Px)Y9439V_jyXX>{P~fLl4j7C(YG=43G8j)-axV`Fvbz1|5z;m8_`Ny3)&DTi=TWhC}b@k%dgar9QXb)ruMSv_}iUKy%yM^9v;5QC1 BTs;5) literal 0 HcmV?d00001