diff --git a/sgzb-modules/pom.xml b/sgzb-modules/pom.xml
index 3d9d85cc..96561cf6 100644
--- a/sgzb-modules/pom.xml
+++ b/sgzb-modules/pom.xml
@@ -15,7 +15,6 @@
sgzb-file
sgzb-base
sgzb-material
- sgzb-settlement
sgzb-modules
diff --git a/sgzb-modules/sgzb-settlement/pom.xml b/sgzb-modules/sgzb-settlement/pom.xml
deleted file mode 100644
index ddf99213..00000000
--- a/sgzb-modules/sgzb-settlement/pom.xml
+++ /dev/null
@@ -1,107 +0,0 @@
-
-
-
- sgzb-modules
- com.bonus.sgzb
- 3.6.3
-
- 4.0.0
-
- sgzb-modules-settlement
-
-
- sgzb-modules-settlement
-
-
-
- com.bonus.sgzb
- sgzb-common-core
-
-
- com.bonus.sgzb
- sgzb-common-security
-
-
- com.bonus.sgzb
- sgzb-common-swagger
-
-
-
- com.alibaba.cloud
- spring-cloud-starter-alibaba-nacos-discovery
-
-
-
-
- com.alibaba.cloud
- spring-cloud-starter-alibaba-nacos-config
-
-
-
-
- com.alibaba.cloud
- spring-cloud-starter-alibaba-sentinel
-
-
-
-
- org.springframework.boot
- spring-boot-starter-actuator
-
-
-
-
- io.springfox
- springfox-swagger-ui
- ${swagger.fox.version}
-
-
-
-
- com.mysql
- mysql-connector-j
-
-
-
-
- com.bonus.sgzb
- sgzb-common-datasource
-
-
-
-
- com.bonus.sgzb
- sgzb-common-datascope
-
-
-
-
- com.bonus.sgzb
- sgzb-common-log
-
-
-
-
-
- com.bonus.sgzb
- sgzb-common-swagger
-
-
- org.springframework.boot
- spring-boot-configuration-processor
- true
-
-
- org.projectlombok
- lombok
-
-
-
-
- 8
- 8
-
-
-
\ No newline at end of file
diff --git a/sgzb-modules/sgzb-settlement/src/main/java/com/bonus/sgzb/settlement/SgzbSettlementApplication.java b/sgzb-modules/sgzb-settlement/src/main/java/com/bonus/sgzb/settlement/SgzbSettlementApplication.java
deleted file mode 100644
index f246b26f..00000000
--- a/sgzb-modules/sgzb-settlement/src/main/java/com/bonus/sgzb/settlement/SgzbSettlementApplication.java
+++ /dev/null
@@ -1,36 +0,0 @@
-package com.bonus.sgzb.settlement;
-
-
-import com.bonus.sgzb.common.security.annotation.EnableCustomConfig;
-import com.bonus.sgzb.common.security.annotation.EnableRyFeignClients;
-import com.bonus.sgzb.common.swagger.annotation.EnableCustomSwagger2;
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
-
-/**
- * 结算服务
- *
- * @author ruoyi
- */
-@EnableCustomSwagger2
-@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
-@EnableCustomConfig
-@EnableRyFeignClients
-public class SgzbSettlementApplication
-{
- public static void main(String[] args)
- {
- SpringApplication.run(SgzbSettlementApplication.class, args);
- System.out.println("(♥◠‿◠)ノ゙ 结算模块启动成功 ლ(´ڡ`ლ)゙ \n" +
- " .-------. ____ __ \n" +
- " | _ _ \\ \\ \\ / / \n" +
- " | ( ' ) | \\ _. / ' \n" +
- " |(_ o _) / _( )_ .' \n" +
- " | (_,_).' __ ___(_ o _)' \n" +
- " | |\\ \\ | || |(_,_)' \n" +
- " | | \\ `' /| `-' / \n" +
- " | | \\ / \\ / \n" +
- " ''-' `'-' `-..-' ");
- }
-}
diff --git a/sgzb-modules/sgzb-settlement/src/main/resources/banner.txt b/sgzb-modules/sgzb-settlement/src/main/resources/banner.txt
deleted file mode 100644
index 27cacb9c..00000000
--- a/sgzb-modules/sgzb-settlement/src/main/resources/banner.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Spring Boot Version: ${spring-boot.version}
-Spring Application Name: ${spring.application.name}
- _ __ _ _
- (_) / _|(_)| |
- _ __ _ _ ___ _ _ _ ______ | |_ _ | | ___
-| '__|| | | | / _ \ | | | || ||______|| _|| || | / _ \
-| | | |_| || (_) || |_| || | | | | || || __/
-|_| \__,_| \___/ \__, ||_| |_| |_||_| \___|
- __/ |
- |___/
\ No newline at end of file
diff --git a/sgzb-modules/sgzb-settlement/src/main/resources/bootstrap.yml b/sgzb-modules/sgzb-settlement/src/main/resources/bootstrap.yml
deleted file mode 100644
index bc874092..00000000
--- a/sgzb-modules/sgzb-settlement/src/main/resources/bootstrap.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-# Tomcat
-server:
- port: 9304
-
-# Spring
-spring:
- application:
- # 应用名称
- name: sgzb-settlement
- profiles:
- # 环境配置
- active: sgzb_cloud_dev
- cloud:
- nacos:
- discovery:
- # 服务注册地址
- server-addr: 192.168.0.14:8848
- namespace: sgzb_cloud_dev
- config:
- # 配置中心地址
- server-addr: 192.168.0.14:8848
- namespace: sgzb_cloud_dev
- # 配置文件格式
- file-extension: yml
- # 共享配置
- shared-configs:
- - application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
diff --git a/sgzb-modules/sgzb-settlement/src/main/resources/logback.xml b/sgzb-modules/sgzb-settlement/src/main/resources/logback.xml
deleted file mode 100644
index ed6c17d3..00000000
--- a/sgzb-modules/sgzb-settlement/src/main/resources/logback.xml
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- ${log.pattern}
-
-
-
-
-
- ${log.path}/info.log
-
-
-
- ${log.path}/info.%d{yyyy-MM-dd}.log
-
- 60
-
-
- ${log.pattern}
-
-
-
- INFO
-
- ACCEPT
-
- DENY
-
-
-
-
- ${log.path}/error.log
-
-
-
- ${log.path}/error.%d{yyyy-MM-dd}.log
-
- 60
-
-
- ${log.pattern}
-
-
-
- ERROR
-
- ACCEPT
-
- DENY
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file