diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-client/pom.xml b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-client/pom.xml
deleted file mode 100644
index 5c57808384..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-client/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- epmet-openapi-adv
- com.epmet
- 2.0.0
- ../pom.xml
-
- 4.0.0
-
- epmet-openapi-adv-client
-
-
-
\ No newline at end of file
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/Dockerfile b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/Dockerfile
deleted file mode 100644
index d15b865820..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/Dockerfile
+++ /dev/null
@@ -1,11 +0,0 @@
-FROM java:8
-
-RUN export LANG="zh_CN.UTF-8"
-RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
-RUN echo 'Asia/Shanghai' > /etc/timezone
-
-COPY ./target/*.jar ./epmet-openapi-adv.jar
-
-EXPOSE 8115
-
-ENTRYPOINT ["sh", "-c", "exec $RUN_INSTRUCT"]
\ No newline at end of file
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/deploy/docker-compose-dev.yml b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/deploy/docker-compose-dev.yml
deleted file mode 100644
index 79721a6cb7..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/deploy/docker-compose-dev.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-version: "3.7"
-services:
- epmet-openapi-adv-server:
- container_name: epmet-openapi-adv-server-dev
- image: 192.168.1.140:5000/epmet-cloud-dev/epmet-openapi-adv-server:version_placeholder
- ports:
- - "8015:8015"
- network_mode: host # 不会创建新的网络
- volumes:
- - "/opt/epmet-cloud-logs/dev:/logs"
- environment:
- RUN_INSTRUCT: "java -Xms32m -Xmx200m -jar ./epmet-openapi-adv.jar"
- restart: "unless-stopped"
- deploy:
- resources:
- limits:
- cpus: '0.1'
- memory: 300M
\ No newline at end of file
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/deploy/docker-compose-prod.yml b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/deploy/docker-compose-prod.yml
deleted file mode 100644
index b5a13e04e3..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/deploy/docker-compose-prod.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-version: "3.7"
-services:
- epmet-openapi-adv-server:
- container_name: epmet-openapi-adv-server-prod
- image: registry-vpc.cn-qingdao.aliyuncs.com/epmet-cloud-master/epmet-openapi-adv-server:0.3.3
- ports:
- - "8015:8015"
- network_mode: host # 不会创建新的网络
- volumes:
- - "/opt/epmet-cloud-logs/prod:/logs"
- environment:
- RUN_INSTRUCT: "java -Xms256m -Xmx512m -jar ./epmet-openapi-adv.jar"
- restart: "unless-stopped"
- deploy:
- resources:
- limits:
- cpus: '0.1'
- memory: 600M
\ No newline at end of file
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/deploy/docker-compose-test.yml b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/deploy/docker-compose-test.yml
deleted file mode 100644
index 45d536cb2f..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/deploy/docker-compose-test.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-version: "3.7"
-services:
- epmet-openapi-adv-server:
- container_name: epmet-openapi-adv-server-test
- image: registry-vpc.cn-qingdao.aliyuncs.com/epmet-cloud-release/epmet-openapi-adv-server:version_placeholder
- ports:
- - "8015:8015"
- network_mode: host # 不会创建新的网络
- volumes:
- - "/opt/epmet-cloud-logs/test:/logs"
- environment:
- RUN_INSTRUCT: "java -Xms32m -Xmx200m -jar ./epmet-openapi-adv.jar"
- restart: "unless-stopped"
- deploy:
- resources:
- limits:
- cpus: '0.1'
- memory: 300M
\ No newline at end of file
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/pom.xml b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/pom.xml
deleted file mode 100644
index 14d5226105..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/pom.xml
+++ /dev/null
@@ -1,227 +0,0 @@
-
-
-
- 0.3.3
-
- epmet-openapi-adv
- com.epmet
- 2.0.0
- ../pom.xml
-
- 4.0.0
-
- epmet-openapi-adv-server
-
-
-
- com.epmet
- epmet-commons-mybatis
- 2.0.0
-
-
- org.springframework.boot
- spring-boot-starter-web
-
-
- org.springframework
- spring-context-support
-
-
- org.springframework.boot
- spring-boot-starter-actuator
-
-
- com.alibaba.cloud
- spring-cloud-starter-alibaba-nacos-discovery
-
-
- com.alibaba.cloud
- spring-cloud-starter-alibaba-nacos-config
-
-
-
- io.github.openfeign
- feign-httpclient
- 10.3.0
-
-
-
-
- ${project.artifactId}
-
-
- org.springframework.boot
- spring-boot-maven-plugin
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
-
- true
-
-
-
-
- ${project.basedir}/src/main/java
-
-
- true
- ${basedir}/src/main/resources
-
-
-
-
-
-
- dev
-
- 8115
- dev
-
-
-
-
-
- epmet_adv_user
- EpmEt-db-UsEr
-
- 0
- 192.168.1.140
- 6379
- 123456
-
- true
- 192.168.1.140:8848
- 1fecc730-5e6e-464c-aae9-7567944e7936
-
-
- false
-
-
- false
-
-
- https://oapi.dingtalk.com/robot/send?access_token=e894e5690f9d6a527722974c71548ff6c0fe29bd956589a09e21b16442a35ed4
-
- SECfcc020bdc83bb17a2c00f39977b1fbc409ef4188c7beaea11c5caa90eeaf87fd
-
-
-
-
- local
-
- true
-
-
- 8115
- local
-
-
-
-
-
- epmet_adv_user
- EpmEt-db-UsEr
-
- 0
- 118.190.150.119
- 47379
- 123456
-
- false
- 192.168.1.140:8848
- 1fecc730-5e6e-464c-aae9-7567944e7936
-
-
- false
-
-
- false
-
-
- https://oapi.dingtalk.com/robot/send?access_token=e894e5690f9d6a527722974c71548ff6c0fe29bd956589a09e21b16442a35ed4
-
- SECfcc020bdc83bb17a2c00f39977b1fbc409ef4188c7beaea11c5caa90eeaf87fd
-
- https://epmet-dev.elinkservice.cn/api/epmetscan/api
-
-
-
- test
-
-
- 8115
- test
-
-
-
-
-
- epmet
- elink@833066
-
- 0
- r-m5eoz5b6tkx09y6bpz.redis.rds.aliyuncs.com
- 6379
- EpmEtrEdIs!q@w
-
- true
- 192.168.10.150:8848
- 67e3c350-533e-4d7c-9f8f-faf1b4aa82ae
-
-
- false
-
-
- true
-
-
- https://oapi.dingtalk.com/robot/send?access_token=e894e5690f9d6a527722974c71548ff6c0fe29bd956589a09e21b16442a35ed4
-
- SECfcc020bdc83bb17a2c00f39977b1fbc409ef4188c7beaea11c5caa90eeaf87fd
-
-
-
-
- prod
-
- 8115
- prod
-
-
-
-
-
- epmet_adv_user
- EpmEt-db-UsEr
-
- 0
- r-m5ez3n1j0qc3ykq2ut.redis.rds.aliyuncs.com
- 6379
- EpmEtclOUdrEdIs!Q2w
-
- true
- 192.168.11.180:8848
- bd205d23-e696-47be-b995-916313f86e99
-
-
- false
-
-
- true
-
-
-
- https://oapi.dingtalk.com/robot/send?access_token=a5f66c3374b1642fe2142dbf56d5997e280172d4e8f2b546c9423a68c82ece6c
-
- SEC95f4f40b533ad379ea6a6d1af6dd37029383cfe1b7cd96dfac2678be2c1c3ed1
-
-
-
-
-
-
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/AdvApplication.java b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/AdvApplication.java
deleted file mode 100644
index 61c5d3b4b8..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/AdvApplication.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.epmet;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
-import org.springframework.cloud.openfeign.EnableFeignClients;
-
-@SpringBootApplication
-@EnableDiscoveryClient
-@EnableFeignClients
-public class AdvApplication {
- public static void main(String[] args) {
- SpringApplication.run(AdvApplication.class, args);
- }
-}
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/aspect/RequestLogAspect.java b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/aspect/RequestLogAspect.java
deleted file mode 100644
index e06fdc2c95..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/aspect/RequestLogAspect.java
+++ /dev/null
@@ -1,40 +0,0 @@
-package com.epmet.adv.aspect;
-
-import com.epmet.commons.tools.aspect.BaseRequestLogAspect;
-import org.aspectj.lang.ProceedingJoinPoint;
-import org.aspectj.lang.annotation.Around;
-import org.aspectj.lang.annotation.Aspect;
-import org.springframework.core.annotation.Order;
-import org.springframework.stereotype.Component;
-import org.springframework.web.context.request.RequestAttributes;
-import org.springframework.web.context.request.RequestContextHolder;
-import org.springframework.web.context.request.ServletRequestAttributes;
-
-import javax.servlet.http.HttpServletRequest;
-
-/**
- * 日志/异常处理切面实现,调用父类方法完成日志记录和异常处理。
- */
-@Aspect
-@Component
-@Order(0)
-public class RequestLogAspect extends BaseRequestLogAspect {
-
- @Override
- @Around(value = "execution(* com.epmet.adv.controller.*Controller*.*(..)) ")
- public Object proceed(ProceedingJoinPoint point) throws Throwable {
- return super.proceed(point, getRequest());
- }
-
- /**
- * 获取Request对象
- *
- * @return
- */
- private HttpServletRequest getRequest() {
- RequestAttributes ra = RequestContextHolder.getRequestAttributes();
- ServletRequestAttributes sra = (ServletRequestAttributes) ra;
- return sra.getRequest();
- }
-
-}
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/config/ModuleConfigImpl.java b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/config/ModuleConfigImpl.java
deleted file mode 100644
index 8d88549b66..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/config/ModuleConfigImpl.java
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
- * Copyright (c) 2018 人人开源 All rights reserved.
- *
- * https://www.renren.io
- *
- * 版权所有,侵权必究!
- */
-
-package com.epmet.adv.config;
-
-import com.epmet.commons.tools.config.ModuleConfig;
-import org.springframework.stereotype.Service;
-
-/**
- * 模块配置信息
- *
- * @author Mark sunlightcs@gmail.com
- * @since 1.0.0
- */
-@Service
-public class ModuleConfigImpl implements ModuleConfig {
- @Override
- public String getName() {
- return "adv";
- }
-}
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/controller/AdvVideoController.java b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/controller/AdvVideoController.java
deleted file mode 100644
index 5c032ad562..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/controller/AdvVideoController.java
+++ /dev/null
@@ -1,28 +0,0 @@
-package com.epmet.adv.controller;
-
-import com.epmet.adv.entity.AdvVedioEntity;
-import com.epmet.adv.service.AdvVedioService;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.stereotype.Controller;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
-
-import java.io.IOException;
-
-@Controller
-@RequestMapping("video")
-public class AdvVideoController {
-
- @Autowired
- private AdvVedioService advVedioService;
-
- @GetMapping("company-adv")
- public String toVedio() throws IOException {
- AdvVedioEntity enableAdvVedioEntity = advVedioService.getEnableAdvVedioEntity();
- String redirectUrl = enableAdvVedioEntity != null ? enableAdvVedioEntity.getPath() : "404";
- return String.format("redirect:%s", redirectUrl);
- //response.sendRedirect("www.baidu.com");
- }
-
-}
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/dao/AdvVedioDao.java b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/dao/AdvVedioDao.java
deleted file mode 100644
index c14da09d52..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/dao/AdvVedioDao.java
+++ /dev/null
@@ -1,33 +0,0 @@
-/**
- * Copyright 2018 人人开源 https://www.renren.io
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see .
- */
-
-package com.epmet.adv.dao;
-
-import com.epmet.adv.entity.AdvVedioEntity;
-import com.epmet.commons.mybatis.dao.BaseDao;
-import org.apache.ibatis.annotations.Mapper;
-
-/**
- * 宣传视频
- *
- * @author generator generator@elink-cn.com
- * @since v1.0.0 2020-12-30
- */
-@Mapper
-public interface AdvVedioDao extends BaseDao {
- AdvVedioEntity getEnableAdvVedioEntity();
-}
\ No newline at end of file
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/entity/AdvVedioEntity.java b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/entity/AdvVedioEntity.java
deleted file mode 100644
index a25c6ea77e..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/entity/AdvVedioEntity.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/**
- * Copyright 2018 人人开源 https://www.renren.io
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see .
- */
-
-package com.epmet.adv.entity;
-
-import com.baomidou.mybatisplus.annotation.TableName;
-
-import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
-import lombok.Data;
-import lombok.EqualsAndHashCode;
-
-import java.util.Date;
-
-/**
- * 宣传视频
- *
- * @author generator generator@elink-cn.com
- * @since v1.0.0 2020-12-30
- */
-@Data
-@EqualsAndHashCode(callSuper=false)
-@TableName("adv_vedio")
-public class AdvVedioEntity extends BaseEpmetEntity {
-
- private static final long serialVersionUID = 1L;
-
- /**
- * 存储路径
- */
- private String path;
-
- /**
- * 存储类型。aliyun_oss,local
- */
- private String storeType;
-
- /**
- * 是否启用
- */
- private Integer enable;
-
-}
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/service/AdvVedioService.java b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/service/AdvVedioService.java
deleted file mode 100644
index 38091ee496..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/service/AdvVedioService.java
+++ /dev/null
@@ -1,7 +0,0 @@
-package com.epmet.adv.service;
-
-import com.epmet.adv.entity.AdvVedioEntity;
-
-public interface AdvVedioService {
- AdvVedioEntity getEnableAdvVedioEntity();
-}
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/service/impl/AdvVedioServiceImpl.java b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/service/impl/AdvVedioServiceImpl.java
deleted file mode 100644
index cecc710c39..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/java/com/epmet/adv/service/impl/AdvVedioServiceImpl.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package com.epmet.adv.service.impl;
-
-import com.epmet.adv.dao.AdvVedioDao;
-import com.epmet.adv.entity.AdvVedioEntity;
-import com.epmet.adv.service.AdvVedioService;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.stereotype.Service;
-
-@Service
-public class AdvVedioServiceImpl implements AdvVedioService {
- @Autowired
- private AdvVedioDao advVedioDao;
-
- public AdvVedioEntity getEnableAdvVedioEntity() {
- return advVedioDao.getEnableAdvVedioEntity();
- }
-
-}
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/resources/bootstrap.yml b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/resources/bootstrap.yml
deleted file mode 100644
index 0bd40dcca7..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/resources/bootstrap.yml
+++ /dev/null
@@ -1,140 +0,0 @@
-server:
- port: @server.port@
- version: @version@
- servlet:
- context-path: /adv
-
-spring:
- main:
- allow-bean-definition-overriding: true
- application:
- name: epmet-openapi-adv-server
- #环境 dev|test|prod
- profiles:
- active: @spring.profiles.active@
- messages:
- encoding: UTF-8
- basename: i18n/messages_common
- jackson:
- time-zone: GMT+8
- date-format: yyyy-MM-dd HH:mm:ss
- redis:
- database: @spring.redis.index@
- host: @spring.redis.host@
- port: @spring.redis.port@
- password: @spring.redis.password@
- timeout: 30s
- datasource:
- druid:
- #MySQL
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: @spring.datasource.druid.url@
- username: @spring.datasource.druid.username@
- password: @spring.datasource.druid.password@
- initial-size: 10
- max-active: 100
- min-idle: 10
- max-wait: 60000
- pool-prepared-statements: true
- max-pool-prepared-statement-per-connection-size: 20
- time-between-eviction-runs-millis: 60000
- min-evictable-idle-time-millis: 300000
- #Oracle需要打开注释
- #validation-query: SELECT 1 FROM DUAL
- test-while-idle: true
- test-on-borrow: false
- test-on-return: false
- filter:
- stat:
- log-slow-sql: true
- slow-sql-millis: 1000
- merge-sql: false
- wall:
- config:
- multi-statement-allow: true
- # 数据迁移工具flyway
- flyway:
- enabled: @spring.flyway.enabled@
- locations: classpath:db/migration
- url: @spring.datasource.druid.url@
- user: @spring.datasource.druid.username@
- password: @spring.datasource.druid.password@
- baseline-on-migrate: true
- baseline-version: 0
- cloud:
- nacos:
- discovery:
- server-addr: @nacos.server-addr@
- #nacos的命名空间ID,默认是public
- namespace: @nacos.discovery.namespace@
- #不把自己注册到注册中心的地址
- register-enabled: @nacos.register-enabled@
- ip: @nacos.ip@
- config:
- enabled: @nacos.config-enabled@
- server-addr: @nacos.server-addr@
- namespace: @nacos.config.namespace@
- group: @nacos.config.group@
- file-extension: yaml
-management:
- endpoints:
- web:
- exposure:
- include: "*"
- endpoint:
- health:
- show-details: ALWAYS
-
-mybatis-plus:
- mapper-locations: classpath:/mapper/**/*.xml
- #实体扫描,多个package用逗号或者分号分隔
- typeAliasesPackage: com.epmet.entity
- global-config:
- #数据库相关配置
- db-config:
- #主键类型 AUTO:"数据库ID自增", INPUT:"用户输入ID", ID_WORKER:"全局唯一ID (数字类型唯一ID)", UUID:"全局唯一ID UUID";
- id-type: ID_WORKER
- #字段策略 IGNORED:"忽略判断",NOT_NULL:"非 NULL 判断"),NOT_EMPTY:"非空判断"
- field-strategy: NOT_NULL
- #驼峰下划线转换
- column-underline: true
- banner: false
- #原生配置
- configuration:
- map-underscore-to-camel-case: true
- cache-enabled: false
- call-setters-on-nulls: true
- jdbc-type-for-null: 'null'
-
-feign:
- hystrix:
- enabled: true
- client:
- config:
- default:
- loggerLevel: BASIC
- okhttp:
- enabled: true
-
-
-hystrix:
- command:
- default:
- execution:
- isolation:
- thread:
- timeoutInMilliseconds: 60000 #缺省为1000
-
-ribbon:
- ReadTimeout: 300000
- ConnectTimeout: 300000
-
-#pageHelper分页插件
-pagehelper:
- helper-dialect: mysql
- reasonable: false #分页合理化配置,例如输入页码为-1,则自动转化为最小页码1
-
-dingTalk:
- robot:
- webHook: @dingTalk.robot.webHook@
- secret: @dingTalk.robot.secret@
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/resources/db/migration/V0.0.1__createAdvVedio.sql b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/resources/db/migration/V0.0.1__createAdvVedio.sql
deleted file mode 100644
index 007c12b55f..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/resources/db/migration/V0.0.1__createAdvVedio.sql
+++ /dev/null
@@ -1,18 +0,0 @@
--- create database epmet_adv default character set utf8mb4;
-
--- CREATE USER epmet_adv_user@'%' IDENTIFIED BY 'EpmEt-db-UsEr';
--- GRANT ALL ON `epmet_adv%`.* TO 'epmet_adv_user'@'%';
--- flush privileges;
-
-CREATE TABLE `adv_vedio` (
- `ID` varchar(64) NOT NULL COMMENT 'id' primary key ,
- `PATH` varchar(255) NOT NULL COMMENT '存储路径',
- `STORE_TYPE` varchar(30) NOT NULL COMMENT '存储类型。aliyun_oss,local',
- `ENABLE` tinyint(1) NOT NULL COMMENT '是否启用',
- `REVISION` int(11) DEFAULT NULL COMMENT '乐观锁',
- `DEL_FLAG` int(11) unsigned DEFAULT NULL COMMENT '删除标识 0:未删除 1:删除',
- `CREATED_BY` varchar(32) DEFAULT NULL COMMENT '创建者',
- `CREATED_TIME` datetime DEFAULT NULL COMMENT '创建时间',
- `UPDATED_BY` varchar(32) DEFAULT NULL COMMENT '更新者',
- `UPDATED_TIME` datetime DEFAULT NULL COMMENT '更新时间'
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='宣传视频'
\ No newline at end of file
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/resources/logback-spring.xml b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/resources/logback-spring.xml
deleted file mode 100644
index 06a21d317c..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/resources/logback-spring.xml
+++ /dev/null
@@ -1,169 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- ${appname}
-
-
-
-
-
-
-
-
- debug
-
-
- ${CONSOLE_LOG_PATTERN}
-
- UTF-8
-
-
-
-
-
-
-
- ${log.path}/debug.log
-
-
- %d{yyyy-MM-dd HH:mm:ss.SSS} [%contextName] [%thread] %-5level %logger{50} - %msg%n
- UTF-8
-
-
-
-
- ${log.path}/debug-%d{yyyy-MM-dd}.%i.log
-
- 100MB
-
-
- 15
-
-
-
- debug
- ACCEPT
- DENY
-
-
-
-
-
-
- ${log.path}/info.log
-
-
- %d{yyyy-MM-dd HH:mm:ss.SSS} [%contextName] [%thread] %-5level %logger{50} - %msg%n
- UTF-8
-
-
-
-
- ${log.path}/info-%d{yyyy-MM-dd}.%i.log
-
- 100MB
-
-
- 15
-
-
-
- info
- ACCEPT
- DENY
-
-
-
-
-
-
- ${log.path}/warn.log
-
-
- %d{yyyy-MM-dd HH:mm:ss.SSS} [%contextName] [%thread] %-5level %logger{50} - %msg%n
- UTF-8
-
-
-
- ${log.path}/warn-%d{yyyy-MM-dd}.%i.log
-
- 100MB
-
-
- 15
-
-
-
- warn
- ACCEPT
- DENY
-
-
-
-
-
-
- ${log.path}/error.log
-
-
- %d{yyyy-MM-dd HH:mm:ss.SSS} [%contextName] [%thread] %-5level %logger{50} - %msg%n
- UTF-8
-
-
-
- ${log.path}/error-%d{yyyy-MM-dd}.%i.log
-
- 100MB
-
-
- 15
-
-
-
- ERROR
- ACCEPT
- DENY
- ${webHook}
- ${secret}
- ${appname}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/resources/mapper/AdvVedioDao.xml b/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/resources/mapper/AdvVedioDao.xml
deleted file mode 100644
index 92a4993b9f..0000000000
--- a/epmet-openapi/epmet-openapi-adv/epmet-openapi-adv-server/src/main/resources/mapper/AdvVedioDao.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select id,
- path,
- store_type,
- enable,
- revision,
- del_flag,
- created_by,
- created_time,
- updated_by,
- updated_time
- from adv_vedio
- where ENABLE = 1
- limit 1;
-
-
-
\ No newline at end of file
diff --git a/epmet-openapi/epmet-openapi-adv/pom.xml b/epmet-openapi/epmet-openapi-adv/pom.xml
deleted file mode 100644
index 13490687d1..0000000000
--- a/epmet-openapi/epmet-openapi-adv/pom.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
- epmet-openapi
- com.epmet
- 2.0.0
-
- pom
- 4.0.0
-
- epmet-openapi-adv
-
-
- epmet-openapi-adv-client
- epmet-openapi-adv-server
-
-
-
-
\ No newline at end of file
diff --git a/epmet-openapi/pom.xml b/epmet-openapi/pom.xml
index fd15705343..9db62073f3 100644
--- a/epmet-openapi/pom.xml
+++ b/epmet-openapi/pom.xml
@@ -13,7 +13,6 @@
epmet-openapi
epmet-openapi-scan
- epmet-openapi-adv
\ No newline at end of file