diff --git a/cloudutil/pom.xml b/cloudutil/pom.xml
index 1694667..e00bee4 100644
--- a/cloudutil/pom.xml
+++ b/cloudutil/pom.xml
@@ -3,7 +3,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- ccsens_dh
+ ccsens_ptos
com.ccsens
1.0-SNAPSHOT
diff --git a/dh_diplomatist/src/main/resources/application.yml b/dh_diplomatist/src/main/resources/application.yml
deleted file mode 100644
index 2fb38e5..0000000
--- a/dh_diplomatist/src/main/resources/application.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-spring:
- profiles:
- active: dev
- include: common, util-dev
diff --git a/dh_diplomatist/src/main/resources/logback-spring.xml b/dh_diplomatist/src/main/resources/logback-spring.xml
deleted file mode 100644
index 2a2bedc..0000000
--- a/dh_diplomatist/src/main/resources/logback-spring.xml
+++ /dev/null
@@ -1,196 +0,0 @@
-
-
-
-
-
-
-
-
-
- logback
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- info
-
-
- ${CONSOLE_LOG_PATTERN}
-
- UTF-8
-
-
-
-
-
-
-
-
-
- ${log.path}/log_debug.log
-
-
- %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n
- UTF-8
-
-
-
-
- ${log.path}/debug/log-debug-%d{yyyy-MM-dd}.%i.log
-
- 100MB
-
-
- 15
-
-
-
- debug
- ACCEPT
- DENY
-
-
-
-
-
-
- ${log.path}/log_info.log
-
-
- %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n
- UTF-8
-
-
-
-
- ${log.path}/info/log-info-%d{yyyy-MM-dd}.%i.log
-
- 100MB
-
-
- 15
-
-
-
- info
- ACCEPT
- DENY
-
-
-
-
-
-
- ${log.path}/log_warn.log
-
-
- %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n
- UTF-8
-
-
-
- ${log.path}/warn/log-warn-%d{yyyy-MM-dd}.%i.log
-
- 100MB
-
-
- 15
-
-
-
- warn
- ACCEPT
- DENY
-
-
-
-
-
-
-
- ${log.path}/log_error.log
-
-
- %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n
- UTF-8
-
-
-
- ${log.path}/error/log-error-%d{yyyy-MM-dd}.%i.log
-
- 100MB
-
-
- 15
-
-
-
- ERROR
- ACCEPT
- DENY
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/dh_ht/pom.xml b/dh_ht/pom.xml
deleted file mode 100644
index 81078d4..0000000
--- a/dh_ht/pom.xml
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
- 4.0.0
-
- ccsens_dh
- com.ccsens
- 1.0-SNAPSHOT
-
-
- dh_ht
-
- 0.0.1-SNAPSHOT
-
- dh_ht
-
- Demo project for Spring Boot
-
- 1.8
-
-
-
-
-
- cloudutil
- com.ccsens
- 1.0-SNAPSHOT
-
-
-
- com.ccsens
- util
- 1.0-SNAPSHOT
- compile
-
-
-
- wechatutil
- com.ccsens
- 1.0-SNAPSHOT
-
-
-
-
-
-
-
-
- org.mybatis.generator
- mybatis-generator-maven-plugin
- 1.3.7
-
- ${basedir}/src/main/resources/mbg.xml
- true
-
-
-
- mysql
- mysql-connector-java
- 5.1.34
-
-
-
-
- org.springframework.boot
- spring-boot-maven-plugin
-
- com.ccsens.dh_ht.DhHtApplication
-
-
-
-
-
- repackage
-
-
-
-
-
-
-
-
-
-
diff --git a/dh_ht/src/main/java/com/ccsens/dh_ht/config/BeanConfig.java b/dh_ht/src/main/java/com/ccsens/dh_ht/config/BeanConfig.java
deleted file mode 100644
index 37336e4..0000000
--- a/dh_ht/src/main/java/com/ccsens/dh_ht/config/BeanConfig.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.ccsens.dh_ht.config;
-
-import com.ccsens.dh_ht.intercept.MybatisInterceptor;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Configuration;
-
-/**
- * @description:
- * @author: wuHuiJuan
- * @create: 2019/12/03 18:01
- */
-@Configuration
-public class BeanConfig {
- /**
- * 注册拦截器
- */
- @Bean
- public MybatisInterceptor mybatisInterceptor() {
- MybatisInterceptor interceptor = new MybatisInterceptor();
- return interceptor;
- }
-}
diff --git a/dh_ht/src/main/java/com/ccsens/dh_ht/config/SpringConfig.java b/dh_ht/src/main/java/com/ccsens/dh_ht/config/SpringConfig.java
deleted file mode 100644
index 53eaf75..0000000
--- a/dh_ht/src/main/java/com/ccsens/dh_ht/config/SpringConfig.java
+++ /dev/null
@@ -1,128 +0,0 @@
-package com.ccsens.dh_ht.config;
-
-
-import cn.hutool.core.lang.Snowflake;
-import cn.hutool.core.util.IdUtil;
-import com.ccsens.util.config.DruidProps;
-import com.fasterxml.jackson.databind.DeserializationFeature;
-import com.fasterxml.jackson.databind.ObjectMapper;
-import com.fasterxml.jackson.databind.module.SimpleModule;
-import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
-import org.springframework.beans.factory.annotation.Value;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.http.MediaType;
-import org.springframework.http.converter.HttpMessageConverter;
-import org.springframework.http.converter.StringHttpMessageConverter;
-import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
-import org.springframework.web.servlet.config.annotation.*;
-
-import javax.annotation.Resource;
-import javax.sql.DataSource;
-import java.nio.charset.Charset;
-import java.util.ArrayList;
-import java.util.List;
-import java.util.TimeZone;
-
-@Configuration
-public class SpringConfig implements WebMvcConfigurer {
- @Resource
- private DruidProps druidPropsUtil;
- @Value("${spring.snowflake.workerId}")
- private String workerId;
- @Value("${spring.snowflake.datacenterId}")
- private String datacenterId;
-
- /**
- * 配置Converter
- * @return
- */
- @Bean
- public HttpMessageConverter responseStringConverter() {
- StringHttpMessageConverter converter = new StringHttpMessageConverter(
- Charset.forName("UTF-8"));
- return converter;
- }
-
- @Bean
- public HttpMessageConverter