diff --git a/bin/.gitignore b/bin/.gitignore
deleted file mode 100644
index 549e00a..0000000
--- a/bin/.gitignore
+++ /dev/null
@@ -1,33 +0,0 @@
-HELP.md
-target/
-!.mvn/wrapper/maven-wrapper.jar
-!**/src/main/**/target/
-!**/src/test/**/target/
-
-### STS ###
-.apt_generated
-.classpath
-.factorypath
-.project
-.settings
-.springBeans
-.sts4-cache
-
-### IntelliJ IDEA ###
-.idea
-*.iws
-*.iml
-*.ipr
-
-### NetBeans ###
-/nbproject/private/
-/nbbuild/
-/dist/
-/nbdist/
-/.nb-gradle/
-build/
-!**/src/main/**/build/
-!**/src/test/**/build/
-
-### VS Code ###
-.vscode/
diff --git a/bin/Dockerfile-gz b/bin/Dockerfile-gz
deleted file mode 100644
index 982ea9b..0000000
--- a/bin/Dockerfile-gz
+++ /dev/null
@@ -1,7 +0,0 @@
-FROM harbor.dcos.guangzhou.unicom.local/eshop/skywalking_agent_springboot_8.1.0:v1.0
-ENV LC_ALL=zh_CN.utf8
-ENV LANG=zh_CN.utf8
-ENV LANGUAGE=zh_CN.utf8
-RUN localedef -c -f UTF-8 -i zh_CN zh_CN.utf8
-ADD /target/biz_service_ebtp_extend-0.0.1.jar /biz_service_ebtp_extend-0.0.1.jar
-ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "/biz_service_ebtp_extend-0.0.1.jar"]
diff --git a/bin/README.md b/bin/README.md
deleted file mode 100644
index 33c31eb..0000000
--- a/bin/README.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# 扩展功能微服务组件
-
- 公告通知功能、共享文档...
-
-## 组件模块
-
- 1. 包名:功能
- 2. 包名:功能
- 3. 包名:功能
-
diff --git a/bin/config-gz b/bin/config-gz
deleted file mode 100644
index 6fe3b43..0000000
--- a/bin/config-gz
+++ /dev/null
@@ -1,17 +0,0 @@
-apiVersion: v1
-clusters:
-- cluster:
- insecure-skip-tls-verify: true
- server: https://10.125.164.35:48662
- name: demok8s
-contexts:
-- context:
- cluster: demok8s
- user: cluster-admin
- name: default
-current-context: default
-kind: Config
-users:
-- name: cluster-admin
- user:
- token: df5e4896a4f6d1b1447b2584ca7405f7
diff --git a/bin/deployment-gz.yaml b/bin/deployment-gz.yaml
deleted file mode 100644
index ae3756b..0000000
--- a/bin/deployment-gz.yaml
+++ /dev/null
@@ -1,83 +0,0 @@
-# 接口版本
-apiVersion: apps/v1
-# 接口类型
-kind: Deployment
-metadata:
- name: biz-service-ebtp-extend
- namespace: default
- labels:
- app: biz-service-ebtp-extend
-
-# 必选,详细定义
-spec:
- # pod 副本数量
- replicas: 1
-
- # 滚动升级配置信息
- strategy:
- rollingUpdate:
- maxSurge: 1
- maxUnavailable: 1
-
- # 选择器,匹配pod模板
- selector:
- matchLabels:
- app: biz-service-ebtp-extend
-
- template:
- metadata:
- labels:
- # 模板名称
- app: biz-service-ebtp-extend
-
- # 定义容器模板,该模板可以包含多个容器
- spec:
- # 挂载日志存储
- volumes:
- - name: log
- persistentVolumeClaim:
- claimName: log-pvc
- readOnly: false
- - name: storage
- persistentVolumeClaim:
- claimName: file-pvc
- readOnly: false
-
- # 必选,Pod中容器列表
- containers:
- - name: biz-service-ebtp-extend
- image: harbor.dcos.guangzhou.unicom.local/eshop/biz-service-ebtp-extend:latest
- # 在容器中挂载日志存储区
- volumeMounts:
- - name: log
- mountPath: /log
- - name: storage
- mountPath: /storage
- # 需要暴露的端口库号列表
- ports:
- - containerPort: 18018
- # 容器运行前需设置的环境变量列表
- env:
- # Apollo 配置中心变量设置
- - name: APOLLO_CONFIGSERVICE
- value: http://10.242.31.158:6001
----
-kind: Service
-apiVersion: v1
-metadata:
- name: biz-service-ebtp-extend
- namespace: default
- labels:
- app: biz-service-ebtp-extend
- annotations:
- lb.cke.tg.unicom/target-vports: 18018-18018
-spec:
- ports:
- - port: 18018
- targetPort: 18018
- selector:
- app: biz-service-ebtp-extend
-status:
- loadBalancer: {}
-
----
\ No newline at end of file
diff --git a/bin/pom.xml b/bin/pom.xml
deleted file mode 100644
index f696803..0000000
--- a/bin/pom.xml
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
- 4.0.0
-
-
- com.chinaunicom.ebtp
- mall-ebtp-cloud-parent
- 0.0.1-SNAPSHOT
-
-
- com.chinaunicom.mall.ebtp
- biz_service_ebtp_extend
- 0.0.1
- biz_service_ebtp_extend
-
-
-
-
- com.chinaunicom.mall.ebtp
- uboot-core
- 0.0.2-SNAPSHOT
-
-
- com.chinaunicom.ebtp
- mall-ebtp-cloud-security-starter
-
-
-
-
-
- com.chinaunicom.ebtp
- mall-ebtp-cloud-attachment-sdk
-
-
-
- com.chinaunicom.ebtp
- mall-ebtp-cloud-eureka-starter
-
-
-
- com.chinaunicom.ebtp
- mall-ebtp-cloud-feign-starter
-
-
-
- com.chinaunicom.ebtp
- mall-ebtp-cloud-apollo-starter
-
-
-
- com.chinaunicom.ebtp
- mall-ebtp-cloud-jpa-starter
-
-
- mysql
- mysql-connector-java
-
-
- org.apache.shardingsphere
- sharding-jdbc-spring-boot-starter
-
-
-
- com.chinaunicom.ebtp
- mall-ebtp-cloud-seata-starter
-
-
-
- com.chinaunicom.ebtp
- mall-ebtp-cloud-swagger-starter
-
-
-
- com.chinaunicom.ebtp
- mall-ebtp-cloud-redis-starter
-
-
-
-
-
-
- maven-snapshot-local
- maven-snapshot-local
- http://ccp.tianti.tg.unicom.local/artifactory/tianti-maven-snapshot-local/
-
- false
-
-
- true
-
-
-
-
-
-
-
- src/main/resources
- true
-
-
- src/main/java
-
- **/mapper/*Mapper.xml
-
-
-
-
-
- org.springframework.boot
- spring-boot-maven-plugin
-
-
-
-
-
\ No newline at end of file
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/BizServiceEbtpExtendApplication.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/BizServiceEbtpExtendApplication.class
deleted file mode 100644
index 7a2e252..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/BizServiceEbtpExtendApplication.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/column/BizBidNoticeField.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/column/BizBidNoticeField.class
deleted file mode 100644
index 2835866..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/column/BizBidNoticeField.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/controller/BizBidNoticeController.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/controller/BizBidNoticeController.class
deleted file mode 100644
index 070b781..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/controller/BizBidNoticeController.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/dao/BizBidNoticeMapper.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/dao/BizBidNoticeMapper.class
deleted file mode 100644
index 81acf5f..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/dao/BizBidNoticeMapper.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/dao/mapper/BizBidNoticeMapper.xml b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/dao/mapper/BizBidNoticeMapper.xml
deleted file mode 100644
index 8f15396..0000000
--- a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/dao/mapper/BizBidNoticeMapper.xml
+++ /dev/null
@@ -1,134 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select id,notice_name, notice_title, notice_content, notice_file,notice_release,notice_top, create_by,
- create_date, update_by, update_date,tenant_id,tenant_name,last_update_time, delete_flag from biz_bid_notice
-
-
-
-
-
-
-
-
-
-
-
- update biz_bid_notice
- set
- delete_flag="deleted"
- where notice_id=#{notice_id} limit #{pageIndex},#{pageSize}
-
-
-
- update biz_bid_notice
- set
- notice_release="open"
- where id=#{id}
-
-
-
- update biz_bid_notice
- set
- notice_release="close"
- where id=#{id}
-
-
-
- update biz_bid_notice
- set
- notice_top="0"
- where id=#{id}
-
-
-
- update biz_bid_notice
- set
- notice_top="1"
- where id=#{id}
-
-
-
-
- update biz_bid_notice
-
- notice_name = #{noticeName},
- notice_title = #{noticeTitle},
- notice_content = #{noticeContent},
- notice_file = #{noticeFile},
- notice_release=#{noticeRelease}
- notice_top=#{noticeTop}
- update_by = #{updatBy},
- update_date = #{updateDate},
- tenant_id = #{tenantId},
- tenant_name = #{tenantName},
- last_update_time = #{lastTpdateTime},
-
- where ID=#{id}
-
-
-
-
- update biz_bid_notice
- set
- delete_flag="deleted"
- where ID=#{id,jdbcType=BIGINT}
-
-
\ No newline at end of file
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/entity/BizBidNotice.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/entity/BizBidNotice.class
deleted file mode 100644
index ca14646..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/entity/BizBidNotice.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/service/IBizBidNoticeService.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/service/IBizBidNoticeService.class
deleted file mode 100644
index cc0488d..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/service/IBizBidNoticeService.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/service/impl/BizBidNoticeServiceImpl.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/service/impl/BizBidNoticeServiceImpl.class
deleted file mode 100644
index 220aa23..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidnotice/service/impl/BizBidNoticeServiceImpl.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/column/BizBidSharedField.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/column/BizBidSharedField.class
deleted file mode 100644
index 451a0a0..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/column/BizBidSharedField.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/controller/BizBidSharedController.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/controller/BizBidSharedController.class
deleted file mode 100644
index 07a5e17..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/controller/BizBidSharedController.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/dao/BizBidSharedMapper.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/dao/BizBidSharedMapper.class
deleted file mode 100644
index 9e0cee1..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/dao/BizBidSharedMapper.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/dao/mapper/BizBidSharedMapper.xml b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/dao/mapper/BizBidSharedMapper.xml
deleted file mode 100644
index 8d7b42b..0000000
--- a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/dao/mapper/BizBidSharedMapper.xml
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select id,shared_id, shared_name, shared_role, shared_file,shared_remarks, create_by,
- create_date, update_by, update_date,tenant_id,tenant_name,last_update_time, delete_flag from biz_bid_shared
-
-
-
-
-
-
-
-
- update biz_bid_shared
- set
- delete_flag="deleted"
- where ID=#{id,jdbcType=BIGINT}
-
-
\ No newline at end of file
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/entity/BizBidShared.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/entity/BizBidShared.class
deleted file mode 100644
index 854decc..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/entity/BizBidShared.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/service/IBizBidSharedService.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/service/IBizBidSharedService.class
deleted file mode 100644
index 2326bd0..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/service/IBizBidSharedService.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/service/impl/BizBidSharedServiceImpl.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/service/impl/BizBidSharedServiceImpl.class
deleted file mode 100644
index 3f8c163..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidshared/service/impl/BizBidSharedServiceImpl.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/column/BizBidSharedRecordField.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/column/BizBidSharedRecordField.class
deleted file mode 100644
index 0ea0ee8..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/column/BizBidSharedRecordField.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/controller/BizBidSharedRecordController.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/controller/BizBidSharedRecordController.class
deleted file mode 100644
index 4fb7070..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/controller/BizBidSharedRecordController.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/dao/BizBidSharedRecordMapper.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/dao/BizBidSharedRecordMapper.class
deleted file mode 100644
index d061086..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/dao/BizBidSharedRecordMapper.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/dao/mapper/BizBidSharedRecordMapper.xml b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/dao/mapper/BizBidSharedRecordMapper.xml
deleted file mode 100644
index ed9b47a..0000000
--- a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/dao/mapper/BizBidSharedRecordMapper.xml
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- select id,record_id, record_role, record_name, record_staff,record_account, create_by,
- create_date, update_by, update_date,tenant_id,tenant_name,last_update_time, delete_flag from biz_bid_shared_record
-
-
-
-
-
-
-
-
-
- update biz_bid_shared_record
- set
- delete_flag="deleted"
- where ID=#{id,jdbcType=BIGINT}
-
-
\ No newline at end of file
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/entity/BizBidSharedRecord.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/entity/BizBidSharedRecord.class
deleted file mode 100644
index 285db34..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/entity/BizBidSharedRecord.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/service/IBizBidSharedRecordService.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/service/IBizBidSharedRecordService.class
deleted file mode 100644
index 578d6ec..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/service/IBizBidSharedRecordService.class and /dev/null differ
diff --git a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/service/impl/BizBidSharedRecordServiceImpl.class b/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/service/impl/BizBidSharedRecordServiceImpl.class
deleted file mode 100644
index 8cf9c28..0000000
Binary files a/bin/src/main/java/com/chinaunicom/mall/ebtp/extend/bizbidsharedrecord/service/impl/BizBidSharedRecordServiceImpl.class and /dev/null differ
diff --git a/bin/src/main/resources/application-dev.yml b/bin/src/main/resources/application-dev.yml
deleted file mode 100644
index 7d976f2..0000000
--- a/bin/src/main/resources/application-dev.yml
+++ /dev/null
@@ -1,194 +0,0 @@
-server:
- port: 18018
- servlet:
- context-path: /
-
-# 对应 apollo 配置中心的应用名
-app:
- id: biz-service-ebtp-extend
-
-# Apollo 配置信息
-apollo:
- meta: http://10.242.31.158:6001/
- bootstrap:
- namespace: application
- enabled: true
- eagerLoad:
- enabled: true
-
-spring:
- aop:
- auto: true #开启spring的aop配置
- proxy-target-class: true
-
- application:
- name: biz-service-ebtp-extend
-
- shardingsphere:
- datasource:
- names: ds0
- ds0:
- type: com.alibaba.druid.pool.DruidDataSource
- driver-class-name: com.mysql.cj.jdbc.Driver
- username: root
- password: root
- jdbc-url: jdbc:mysql://10.242.31.158:3033/ebtp_mall_extend?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
- url: jdbc:mysql://10.242.31.158:3033/ebtp_mall_extend?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
- filters: stat,wall,log4j
- maxActive: 20
- initialSize: 1
- maxWait: 60000
- minIdle: 1
- timeBetweenEvictionRunsMillis: 60000
- minEvictableIdleTimeMillis: 300000
- validationQuery: select 'x'
- testWhileIdle: true
- testOnBorrow: false
- testOnReturn: false
- poolPreparedStatements: true
- maxOpenPreparedStatements: 20
- connection-properties: druid.stat.merggSql=ture;druid.stat.slowSqlMillis=5000
- props:
- sql:
- show: true
-
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- serialization:
- write-dates-as-timestamps: false
-
- # 天宫Kafka增加了安全认证,需要配置安全属性
- kafka:
- bootstrap-servers: 10.125.164.192:32005,10.125.164.193:32005,10.125.164.194:32005
- template:
- default-topic: jl_test
-
- # 生产者配置参数
- producer:
- client-id: core-service-ebtp-crypt
- properties:
- security.protocol: SASL_PLAINTEXT
- sasl.mechanism: SCRAM-SHA-256
- sasl.jaas.config: org.apache.kafka.common.security.scram.ScramLoginModule required username="jltest" password="Unicom#123";
-
- # 消费者配置参数
- consumer:
- group-id: core-service-ebtp-crypt-consumer
- auto-offset-reset: latest
- properties:
- security.protocol: SASL_PLAINTEXT
- sasl.mechanism: SCRAM-SHA-256
- sasl.jaas.config: org.apache.kafka.common.security.scram.ScramLoginModule required username="jltest" password="Unicom#123";
-
- # 天宫 redis 需要使用哨兵进行访问
- redis:
- sentinel:
- master: eshop-redis
- nodes: 10.125.164.124:32718, 10.125.164.118:32716, 10.125.164.121:32716
- password: Unicom#135
-
- lettuce:
- # jedis:
- pool:
- maxTotal: 50
- minIdle: 1
- maxWaitMillis: 5000
- maxIdle: 5
- testOnBorrow: true
- testOnReturn: true
- testWhileIdle: true
- token:
- database: 0
- host: 125.32.114.204
- port: 16379
- password: redis@CC1234
- timeout: 6000
- uuid:
- database: 1
- host: 125.32.114.204
- port: 16379
- password: redis@CC1234
- timeout: 6000
- cache:
- database: 2
- host: 125.32.114.204
- port: 16379
- password: redis@CC1234
- timeout: 6000
-
-# 天宫Eureka配置
-eureka:
- client:
- service-url:
- defaultZone: http://10.242.31.158:5001/eureka,http://10.242.31.158:5002/eureka,http://10.242.31.158:5003/eureka
- instance:
- prefer-ip-address: true
- hostname: ${spring.cloud.client.ip-address}
- instance-ip: ${spring.cloud.client.ip-address}:${server.port}
-
-mybatis-plus:
- configuration:
- # 是否开启自动驼峰命名规则映射:从数据库列名到Java属性驼峰命名的类似映射
- map-underscore-to-camel-case: true
- auto-mapping-behavior: full
- # 这个配置会将执行的sql打印出来,在开发或测试的时候可以用
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- mapper-locations: classpath*:com/chinaunicom/mall/ebtp/**/mapper/*Mapper.xml
- global-config:
- # 逻辑删除配置
- db-config:
- # logic-delete-field: flag # 全局逻辑删除的实体字段名(since 3.3.0,配置后可以忽略不配置步骤2) @TableLogic
- logic-delete-value: deleted # 逻辑已删除值
- logic-not-delete-value: normal # 逻辑未删除值
-
-# --------------feign ------------
-feign:
- httpclient:
- enabled: false
- okhttp:
- enabled: true
- client:
- config:
- default:
- connect-timeout: 20000
- read-timeout: 20000
-
-hystrix:
- command:
- default:
- execution:
- timeout:
- enabled: true
- isolation:
- strategy: SEMAPHORE
- thread:
- timeoutInMilliseconds: 200000 #熔断超时时间
- circuitBreaker:
- sleepWindowInMilliseconds: 20000
- forceClosed: true
-ribbon:
- ReadTimeout: 20000 #请求处理的超时时间
- ConnectTimeout: 20000 #请求连接超时时间
- MaxAutoRetries: 0 #对当前实例的重试次数
- MaxAutoRetriesNextServer: 1 #切换实例的重试次数 1
-
-mconfig:
- workerId: 1
- datacenterId: 1
- remote:
- approval: true #是否需要提交公告审批
- media: true #是否需要发送到媒体
-
- #中国联通电子商城外网接入平台 相关参数
- token:
- userName: zbgg
- password: eip_13579
- file-wjpt-storage-path: http://111.198.162.67:8081/enr/api/base/file/cgDownload/ #测试地址
- #获取file地址
- file:
- address: http://125.32.114.204:8760/api/core-service-ebtp-updownload/v1/download/oid/
- #提交审批相关字段
- approve:
- wfSectionNo: 002
- wfSectionName: 采购审批
diff --git a/bin/src/main/resources/application.yml b/bin/src/main/resources/application.yml
deleted file mode 100644
index caf4dfc..0000000
--- a/bin/src/main/resources/application.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-spring:
- profiles:
- active: dev
\ No newline at end of file
diff --git a/bin/src/main/resources/file.conf b/bin/src/main/resources/file.conf
deleted file mode 100644
index d591bab..0000000
--- a/bin/src/main/resources/file.conf
+++ /dev/null
@@ -1,66 +0,0 @@
-transport {
- # tcp udt unix-domain-socket
- type = "TCP"
- #NIO NATIVE
- server = "NIO"
- #enable heartbeat
- heartbeat = true
- # the client batch send request enable
- enableClientBatchSendRequest = true
- #thread factory for netty
- threadFactory {
- bossThreadPrefix = "NettyBoss"
- workerThreadPrefix = "NettyServerNIOWorker"
- serverExecutorThread-prefix = "NettyServerBizHandler"
- shareBossWorker = false
- clientSelectorThreadPrefix = "NettyClientSelector"
- clientSelectorThreadSize = 1
- clientWorkerThreadPrefix = "NettyClientWorkerThread"
- # netty boss thread size,will not be used for UDT
- bossThreadSize = 1
- #auto default pin or 8
- workerThreadSize = "default"
- }
- shutdown {
- # when destroy server, wait seconds
- wait = 3
- }
- serialization = "seata"
- compressor = "none"
-}
-service {
- #transaction service group mapping
- vgroupMapping.biz-service-ebtp-expenses-fescar-service-group = "default"
- #only support when registry.type=file, please don't set multiple addresses
- default.grouplist = "127.0.0.1:8091"
- #degrade, current not support
- enableDegrade = false
- #disable seata
- disableGlobalTransaction = false
-}
-
-client {
- rm {
- asyncCommitBufferLimit = 10000
- lock {
- retryInterval = 10
- retryTimes = 30
- retryPolicyBranchRollbackOnConflict = true
- }
- reportRetryCount = 5
- tableMetaCheckEnable = false
- reportSuccessEnable = false
- }
- tm {
- commitRetryCount = 5
- rollbackRetryCount = 5
- }
- undo {
- dataValidation = true
- logSerialization = "jackson"
- logTable = "undo_log"
- }
- log {
- exceptionRate = 100
- }
-}
\ No newline at end of file
diff --git a/bin/src/main/resources/logback.xml b/bin/src/main/resources/logback.xml
deleted file mode 100644
index 62285f5..0000000
--- a/bin/src/main/resources/logback.xml
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
-
-
-
- ${logback.appname}
-
-
-
-
-
-
- %d{yyyy-MM-dd HH:mm:ss.SSS} %contextName [%thread] %-5level %logger{50} - %msg%n
-
-
-
-
-
-
-
-
- ERROR
-
- DENY
-
- ACCEPT
-
-
- ${logback.logdir}/info.${logback.appname}.log
-
-
-
- ${logback.logdir}/info.${logback.appname}.%d{yyyy-MM-dd}.log
-
- 3
-
- true
-
-
-
-
-
- UTF-8
- %d [%thread] %-5level %logger{64} %line - %msg%n
-
-
-
-
-
-
- Error
-
-
- ${logback.logdir}/error.${logback.appname}.log
-
-
-
- ${logback.logdir}/error.${logback.appname}.%d{yyyy-MM-dd}.log
-
- 3
-
- true
-
-
-
-
-
- UTF-8
- %d [%thread] %-5level %logger{128} %line - %msg%n
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/bin/src/main/resources/registry.conf b/bin/src/main/resources/registry.conf
deleted file mode 100644
index bd724ed..0000000
--- a/bin/src/main/resources/registry.conf
+++ /dev/null
@@ -1,79 +0,0 @@
-registry {
- # file 、nacos 、eureka、redis、zk、consul、etcd3、sofa
- type = "eureka"
-
- nacos {
- application = "seata-server"
- serverAddr = "localhost"
- namespace = ""
- username = ""
- password = ""
- }
- eureka {
- serviceUrl = "http://10.242.31.158:5001/eureka,http://10.242.31.158:5002/eureka,http://10.242.31.158:5003/eureka"
- weight = "1"
- }
- redis {
- serverAddr = "localhost:6379"
- db = "0"
- password = ""
- timeout = "0"
- }
- zk {
- serverAddr = "127.0.0.1:2181"
- sessionTimeout = 6000
- connectTimeout = 2000
- username = ""
- password = ""
- }
- consul {
- serverAddr = "127.0.0.1:8500"
- }
- etcd3 {
- serverAddr = "http://localhost:2379"
- }
- sofa {
- serverAddr = "127.0.0.1:9603"
- region = "DEFAULT_ZONE"
- datacenter = "DefaultDataCenter"
- group = "SEATA_GROUP"
- addressWaitTime = "3000"
- }
- file {
- name = "file.conf"
- }
-}
-
-config {
- # file、nacos 、apollo、zk、consul、etcd3、springCloudConfig
- type = "file"
-
- nacos {
- serverAddr = "localhost"
- namespace = ""
- group = "SEATA_GROUP"
- username = ""
- password = ""
- }
- consul {
- serverAddr = "127.0.0.1:8500"
- }
- apollo {
- appId = "seata-server"
- apolloMeta = "http://192.168.1.204:8801"
- namespace = "application"
- }
- zk {
- serverAddr = "127.0.0.1:2181"
- sessionTimeout = 6000
- connectTimeout = 2000
- username = ""
- password = ""
- }
- etcd3 {
- serverAddr = "http://localhost:2379"
- }
- file {
- name = "file.conf"
- }
-}
diff --git a/bin/src/main/resources/seata.conf b/bin/src/main/resources/seata.conf
deleted file mode 100644
index c656a9c..0000000
--- a/bin/src/main/resources/seata.conf
+++ /dev/null
@@ -1,21 +0,0 @@
-## ---------------------------------------------------------------------------
-## Licensed to the Apache Software Foundation (ASF) under one or more
-## contributor license agreements. See the NOTICE file distributed with
-## this work for additional information regarding copyright ownership.
-## The ASF licenses this file to You under the Apache License, Version 2.0
-## (the "License"); you may not use this file except in compliance with
-## the License. You may obtain a copy of the License at
-##
-## http://www.apache.org/licenses/LICENSE-2.0
-##
-## Unless required by applicable law or agreed to in writing, software
-## distributed under the License is distributed on an "AS IS" BASIS,
-## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-## See the License for the specific language governing permissions and
-## limitations under the License.
-## ---------------------------------------------------------------------------
-
-client {
- application.id = biz-service-ebtp-extend
- transaction.service.group = biz-service-ebtp-extend-fescar-service-group
-}
diff --git a/bin/src/main/resources/swagger-configuration.properties b/bin/src/main/resources/swagger-configuration.properties
deleted file mode 100644
index 6624bf1..0000000
--- a/bin/src/main/resources/swagger-configuration.properties
+++ /dev/null
@@ -1,7 +0,0 @@
-unifast.swagger.basePackage=com.chinaunicom.mall.ebtp.extend
-unifast.swagger.title=\u6d4b\u8bd5\u63a5\u53e3\u6587\u6863
-unifast.swagger.contactName=\u5409\u6797\u9879\u76ee\u7ec4
-unifast.swagger.contactUrl=http://chinaunicom.com
-unifast.swagger.contactEmail=chinaunicom@chinaunicom.com
-unifast.swagger.version=0.0.1
-unifast.swagger.description=\u7840\u540e\u53f0\u529f\u80fd\u6846\u67b6
\ No newline at end of file
diff --git a/deployment-gz.yaml b/deployment-gz.yaml
index cf47903..4d9e7d4 100644
--- a/deployment-gz.yaml
+++ b/deployment-gz.yaml
@@ -41,10 +41,6 @@ spec:
persistentVolumeClaim:
claimName: log-pvc
readOnly: false
- - name: storage
- persistentVolumeClaim:
- claimName: file-pvc
- readOnly: false
# 必选,Pod中容器列表
containers:
@@ -54,8 +50,6 @@ spec:
volumeMounts:
- name: log
mountPath: /log
- - name: storage
- mountPath: /storage
# 需要暴露的端口库号列表
ports:
- containerPort: 18018
diff --git a/src/main/java/com/chinaunicom/mall/ebtp/extend/BizServiceEbtpExtendApplication.java b/src/main/java/com/chinaunicom/mall/ebtp/extend/BizServiceEbtpExtendApplication.java
index 0468653..4cdccbc 100644
--- a/src/main/java/com/chinaunicom/mall/ebtp/extend/BizServiceEbtpExtendApplication.java
+++ b/src/main/java/com/chinaunicom/mall/ebtp/extend/BizServiceEbtpExtendApplication.java
@@ -1,19 +1,14 @@
package com.chinaunicom.mall.ebtp.extend;
+import com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
-import org.springframework.boot.actuate.autoconfigure.metrics.MeterRegistryCustomizer;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.openfeign.EnableFeignClients;
-import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
-import com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure;
-
-import io.micrometer.core.instrument.MeterRegistry;
-
@SpringBootApplication(exclude = {
DataSourceAutoConfiguration.class,
DruidDataSourceAutoConfigure.class
@@ -27,10 +22,5 @@ public class BizServiceEbtpExtendApplication {
public static void main(String[] args) {
SpringApplication.run(BizServiceEbtpExtendApplication.class, args);
}
-
- @Bean
- public MeterRegistryCustomizer configurer() {
- return (registry) -> registry.config().commonTags("application", "biz-service-ebtp-extend");
- }
}
diff --git a/src/main/java/com/chinaunicom/mall/ebtp/extend/export/bean/BizBidOpenroom.java b/src/main/java/com/chinaunicom/mall/ebtp/extend/export/bean/BizBidOpenroom.java
new file mode 100644
index 0000000..4e66274
--- /dev/null
+++ b/src/main/java/com/chinaunicom/mall/ebtp/extend/export/bean/BizBidOpenroom.java
@@ -0,0 +1,110 @@
+package com.chinaunicom.mall.ebtp.extend.export.bean;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.chinaunicom.mall.ebtp.common.base.entity.BaseEntity;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.Data;
+import lombok.experimental.Accessors;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.io.Serializable;
+import java.time.LocalDateTime;
+
+/**
+ * 实体类 BizBidOpenroom
+ *
+ * @auto.generated
+ */
+@Data
+@Accessors(chain = true)
+@TableName(value = "biz_bid_openroom", autoResultMap = true)
+public class BizBidOpenroom extends BaseEntity implements Serializable {
+
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * 开标室id
+ */
+ private String id;
+ /**
+ * 评审室id
+ */
+ private String assessRoomId;
+ /**
+ * 评审室类型 1、资审 2、评审
+ */
+ private Integer roomType;
+
+ /**
+ * 评审轮次id
+ */
+ private String turnId;
+
+ /**
+ * 轮次
+ */
+ private String turnSort;
+
+ /**
+ * 项目id
+ */
+ private String projectId;
+
+ /**
+ * 项目名称
+ */
+ private String projectName;
+
+ /**
+ * 项目编号
+ */
+ private String projectNo;
+
+ /**
+ * 标段id
+ */
+ private String sectionId;
+
+ /**
+ * 标段名称
+ */
+ private String sectionName;
+
+ /**
+ * 标段编号
+ */
+ private String sectionNo;
+ /**
+ * 开标室状态 0未开标 1、开标
+ */
+ private String roomState;
+ /**
+ * 解封状态(0、为解封 1、解封)
+ */
+ private String unsealState;
+
+ /**
+ * 开标室备注
+ */
+ private String remarks;
+
+ /**
+ * 开标时间
+ */
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ private LocalDateTime opingTime;
+ /**
+ * 开标时限 0 未设置
+ */
+ private String opingTimeLimit;
+ /**
+ * 开标结束时间 通过时限计算
+ */
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ private LocalDateTime opingEndTime;
+
+
+
+}
diff --git a/src/main/java/com/chinaunicom/mall/ebtp/extend/export/bean/BizSupplierRegister.java b/src/main/java/com/chinaunicom/mall/ebtp/extend/export/bean/BizSupplierRegister.java
new file mode 100644
index 0000000..5e59ee3
--- /dev/null
+++ b/src/main/java/com/chinaunicom/mall/ebtp/extend/export/bean/BizSupplierRegister.java
@@ -0,0 +1,67 @@
+package com.chinaunicom.mall.ebtp.extend.export.bean;
+
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.chinaunicom.mall.ebtp.common.base.entity.BaseEntity;
+import com.chinaunicom.mall.ebtp.common.config.CustomLocalDateTimeTypeHandler;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.io.Serializable;
+import java.time.LocalDateTime;
+import java.util.Map;
+
+/**
+ * 实体类 BizSupplierRegister
+ *
+ * @auto.generated
+ */
+@Data
+@EqualsAndHashCode(callSuper = false)
+@Accessors(chain = true)
+@ApiModel(value = "BizSupplierRegister对象", description = "供应商报名登记表")
+public class BizSupplierRegister extends BaseEntity implements Serializable {
+
+ private static final long serialVersionUID = 1L;
+
+
+
+ /**
+ * 机构名称
+ */
+ @ApiModelProperty(value = "机构名称")
+ private String companyName;
+
+
+ /**
+ * 投标人姓名
+ */
+ @ApiModelProperty(value = "投标人姓名")
+ private String bidUserName;
+
+ /**
+ * 联系人名称
+ */
+ @ApiModelProperty(value = "联系人名称")
+ private String contactName;
+
+
+ /**
+ * 签字确认时间
+ */
+
+ @ApiModelProperty(value = "签字确认时间")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ private LocalDateTime signTime;
+
+
+ private String newPrice;
+
+}
diff --git a/src/main/java/com/chinaunicom/mall/ebtp/extend/export/bean/ProjectSection.java b/src/main/java/com/chinaunicom/mall/ebtp/extend/export/bean/ProjectSection.java
index d262698..9667f43 100644
--- a/src/main/java/com/chinaunicom/mall/ebtp/extend/export/bean/ProjectSection.java
+++ b/src/main/java/com/chinaunicom/mall/ebtp/extend/export/bean/ProjectSection.java
@@ -245,4 +245,6 @@ public class ProjectSection extends BaseEntity implements Serializable {
public void setId(String id) {
this.id = id;
}
+
+
}
diff --git a/src/main/java/com/chinaunicom/mall/ebtp/extend/export/bean/Tdoc.java b/src/main/java/com/chinaunicom/mall/ebtp/extend/export/bean/Tdoc.java
new file mode 100644
index 0000000..264cd16
--- /dev/null
+++ b/src/main/java/com/chinaunicom/mall/ebtp/extend/export/bean/Tdoc.java
@@ -0,0 +1,28 @@
+package com.chinaunicom.mall.ebtp.extend.export.bean;
+
+import io.swagger.annotations.ApiModelProperty;
+
+public class Tdoc {
+
+ @ApiModelProperty(value = "")
+ private String assessRoomId;
+
+ @ApiModelProperty(value = "轮次")
+ private Integer turnSort;
+
+ public String getAssessRoomId() {
+ return assessRoomId;
+ }
+
+ public void setAssessRoomId(String assessRoomId) {
+ this.assessRoomId = assessRoomId;
+ }
+
+ public Integer getTurnSort() {
+ return turnSort;
+ }
+
+ public void setTurnSort(Integer turnSort) {
+ this.turnSort = turnSort;
+ }
+}
diff --git a/src/main/java/com/chinaunicom/mall/ebtp/extend/export/controller/ExportController.java b/src/main/java/com/chinaunicom/mall/ebtp/extend/export/controller/ExportController.java
index 5fc7db5..14227a1 100644
--- a/src/main/java/com/chinaunicom/mall/ebtp/extend/export/controller/ExportController.java
+++ b/src/main/java/com/chinaunicom/mall/ebtp/extend/export/controller/ExportController.java
@@ -34,12 +34,19 @@ import org.springframework.web.bind.annotation.RestController;
import com.chinaunicom.mall.ebtp.common.base.entity.BaseResponse;
import com.chinaunicom.mall.ebtp.extend.export.bean.BidEvalDetailDTO;
import com.chinaunicom.mall.ebtp.extend.export.bean.BidEvalInfoDTO;
+import com.chinaunicom.mall.ebtp.extend.export.bean.BizBidOpenroom;
+import com.chinaunicom.mall.ebtp.extend.export.bean.BizSupplierRegister;
import com.chinaunicom.mall.ebtp.extend.export.bean.ExportParame;
import com.chinaunicom.mall.ebtp.extend.export.bean.ProjectSectionVO;
import com.chinaunicom.mall.ebtp.extend.export.bean.ReviewConfigCategoryDTO;
import com.chinaunicom.mall.ebtp.extend.export.bean.ReviewConfigDetailDTO;
+import com.chinaunicom.mall.ebtp.extend.export.bean.Tdoc;
import com.chinaunicom.mall.ebtp.extend.export.services.ExportService;
+import com.chinaunicom.mall.ebtp.extend.export.services.ExportServiceOpen;
import com.chinaunicom.mall.ebtp.extend.export.services.ExportServiceProject;
+import com.chinaunicom.mall.ebtp.extend.export.services.ExportServiceResps;
+import com.chinaunicom.mall.ebtp.extend.export.vo.BidEvalDetailJudgesSummaryVO;
+import com.chinaunicom.mall.ebtp.extend.export.vo.BidEvalDetailSummaryVO;
import com.chinaunicom.mall.ebtp.extend.export.vo.BidEvalDetailVO;
import com.chinaunicom.mall.ebtp.extend.export.vo.BidEvalEarlyJudgesSummaryVO;
import com.chinaunicom.mall.ebtp.extend.export.vo.JuryPrintVO;
@@ -62,9 +69,10 @@ public class ExportController {
private ExportService exportService;
@Resource
private ExportServiceProject exportServiceProject;
-
-
-
+ @Resource
+ private ExportServiceResps exportServiceResps;
+ @Resource
+ private ExportServiceOpen exportServiceOpen;
/**
@@ -74,26 +82,46 @@ public class ExportController {
*/
@RequestMapping(value = "/kbjl", method = RequestMethod.GET)
@ResponseBody
- //TODO 暂未完成
- public void exportKbjlMessage(HttpServletRequest request, HttpServletResponse response) throws IOException {
+ public void exportKbjlMessage(ExportParame parame, HttpServletRequest request, HttpServletResponse response) throws IOException {
+ Tdoc tdocPara = new Tdoc();
+ tdocPara.setAssessRoomId(parame.getAssessRoomId());
+ tdocPara.setTurnSort(Integer.parseInt(parame.getReviewTurnId()));
+
+ BaseResponse> listBaseResponse = exportServiceResps.getTenderQuoteList(tdocPara);
+ List list = listBaseResponse.getData();
ArrayList