diff --git a/ai-analytic-center-api/pom.xml b/ai-analytic-center-api/pom.xml
new file mode 100644
index 0000000..9288351
--- /dev/null
+++ b/ai-analytic-center-api/pom.xml
@@ -0,0 +1,43 @@
+
+
+ 4.0.0
+
+ com.volvo.aicenter
+ ai-analytic-center
+ 1.0.0-SNAPSHOT
+
+
+ ai-analytic-center-api
+ 1.0.0-SNAPSHOT
+ ai-analytic-center-api
+ 公共api模块
+
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-starter-openfeign
+
+
+
+
+ com.alibaba.cloud
+ spring-cloud-starter-alibaba-sentinel
+
+
+
+
+ com.volvo
+ volvo-common-core
+ 1.0.1
+
+
+ com.volvo
+ volvo-common-feign
+ 1.0.1
+
+
+
+
+
diff --git a/ai-analytic-center-api/src/main/resources/META-INF/spring.factories b/ai-analytic-center-api/src/main/resources/META-INF/spring.factories
new file mode 100644
index 0000000..1fa6ff8
--- /dev/null
+++ b/ai-analytic-center-api/src/main/resources/META-INF/spring.factories
@@ -0,0 +1,2 @@
+com.volvo.common.feign.VolvoFeignAutoConfiguration=\
+
diff --git a/ai-analytic-center-api/target/classes/META-INF/spring.factories b/ai-analytic-center-api/target/classes/META-INF/spring.factories
new file mode 100644
index 0000000..1fa6ff8
--- /dev/null
+++ b/ai-analytic-center-api/target/classes/META-INF/spring.factories
@@ -0,0 +1,2 @@
+com.volvo.common.feign.VolvoFeignAutoConfiguration=\
+
diff --git a/ai-analytic-center-biz/pom.xml b/ai-analytic-center-biz/pom.xml
new file mode 100644
index 0000000..8557454
--- /dev/null
+++ b/ai-analytic-center-biz/pom.xml
@@ -0,0 +1,147 @@
+
+
+ 4.0.0
+
+ com.volvo.aicenter
+ ai-analytic-center
+ 1.0.0-SNAPSHOT
+
+
+ ai-analytic-center-biz
+ 1.0.0-SNAPSHOT
+ ai-analytic-center-biz
+ ai project for Spring Boot
+
+ 1.8
+
+
+
+
+
+
+ com.volvo.aicenter
+ ai-analytic-center-api
+ ${ai-analytic-center-api}
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+
+
+ com.alibaba.cloud
+ spring-cloud-starter-alibaba-nacos-discovery
+
+
+
+
+ com.alibaba.cloud
+ spring-cloud-starter-alibaba-nacos-config
+
+
+
+
+ mysql
+ mysql-connector-java
+
+
+
+ org.mockito
+ mockito-core
+ 3.3.3
+ test
+
+
+ org.powermock
+ powermock-module-junit4
+ test
+ 2.0.9
+
+
+ org.powermock
+ powermock-api-mockito2
+ test
+ 2.0.9
+
+
+
+ org.jacoco
+ jacoco-maven-plugin
+ 0.8.7
+
+
+ commons-validator
+ commons-validator
+
+
+
+
+ com.squareup.okhttp3
+ okhttp
+ 4.9.3
+
+
+ dom4j
+ dom4j
+ 1.6.1
+
+
+
+
+ org.apache.skywalking
+ apm-toolkit-logback-1.x
+ 8.9.0
+
+
+
+ com.github.pagehelper
+ pagehelper
+ 5.3.0
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+ org.jacoco
+ jacoco-maven-plugin
+ 0.8.7
+
+
+ target/coverage-reports/jacoco-unit.exec
+
+ target/coverage-reports/jacoco-unit.exec
+
+ com/volvo/aicenter/**
+
+
+ META-INF/**
+
+
+
+
+ jacoco-initialize
+
+ prepare-agent
+
+ test-compile
+
+
+ jacoco-site
+ verify
+
+ report
+
+
+
+
+
+
+
+
diff --git a/ai-analytic-center-biz/src/main/java/com/volvo/ai/analytic/center/AiAnalyticCenterServiceApplication.java b/ai-analytic-center-biz/src/main/java/com/volvo/ai/analytic/center/AiAnalyticCenterServiceApplication.java
new file mode 100644
index 0000000..33e3fef
--- /dev/null
+++ b/ai-analytic-center-biz/src/main/java/com/volvo/ai/analytic/center/AiAnalyticCenterServiceApplication.java
@@ -0,0 +1,25 @@
+package com.volvo.ai.analytic.center;
+
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.context.annotation.Bean;
+import org.springframework.scheduling.annotation.EnableScheduling;
+import org.springframework.web.client.RestTemplate;
+
+import com.volvo.common.feign.annotation.EnableVolvoFeignClients;
+
+@SpringBootApplication(scanBasePackages = {"com.volvo"})
+@EnableVolvoFeignClients
+@EnableScheduling
+public class AiAnalyticCenterServiceApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(AiAnalyticCenterServiceApplication.class, args);
+ }
+
+ @Bean
+ RestTemplate restTemplate() {
+ return new RestTemplate();
+ }
+}
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..3bb7a78
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,241 @@
+
+
+ 4.0.0
+
+ ai-analytic-center
+ com.volvo.aicenter
+ ai-analytic-center
+ ${project.artifactId}
+ 1.0.0-SNAPSHOT
+ pom
+ https://www.volvocars.com
+
+
+
+
+ UTF-8
+ UTF-8
+
+ 1.8
+ 2.6.4
+ 2021.0.1
+ 2021.0.1.0
+ 2.1.0
+ 2.6.2
+ 1.8
+ 1.8
+ 1.0.0-SNAPSHOT
+
+
+
+
+ org.springframework.boot
+ spring-boot-configuration-processor
+ true
+
+
+ com.github.ulisesbocchio
+ jasypt-spring-boot-starter
+ ${jasypt.version}
+
+
+ org.springframework.boot
+ spring-boot-starter-actuator
+
+
+ de.codecentric
+ spring-boot-admin-starter-client
+ ${spring-boot-admin.version}
+
+
+
+ org.projectlombok
+ lombok
+ provided
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+ org.springframework.cloud
+ spring-cloud-starter-bootstrap
+
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-dependencies
+ ${spring-boot.version}
+ pom
+ import
+
+
+
+ org.springframework.cloud
+ spring-cloud-dependencies
+ ${spring-cloud.version}
+ pom
+ import
+
+
+
+ com.alibaba.cloud
+ spring-cloud-alibaba-dependencies
+ ${spring-cloud-alibaba.version}
+ pom
+ import
+
+
+
+
+ com.google.protobuf
+ protobuf-java
+ 2.5.0
+
+
+ com.aliyun.openservices
+ aliyun-log-logback-appender
+ 0.1.18
+
+
+
+ mysql
+ mysql-connector-java
+ 8.0.18
+
+
+
+ com.google.protobuf
+ protobuf-java
+ 2.5.0
+
+
+ com.aliyun.openservices
+ aliyun-log-logback-appender
+ 0.1.18
+
+
+ logback-classic
+ ch.qos.logback
+
+
+
+
+
+
+
+
+
+ src/main/resources
+ true
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+ ${spring-boot.version}
+
+ ${project.build.finalName}
+
+ true
+
+
+
+
+
+ repackage
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+ 3.8.1
+
+ 1.8
+ 1.8
+
+
+ +
+
+ +
+ org.projectlombok
+ +
+ lombok
+ +
+ 1.18.22
+ +
+
+
+
+ org.mapstruct
+ mapstruct-processor
+ 1.5.5.Final
+
+
+
+
+
+ org.jacoco
+ jacoco-maven-plugin
+ 0.8.7
+
+
+ target/coverage-reports/jacoco-unit.exec
+
+ target/coverage-reports/jacoco-unit.exec
+
+ com/volvo/aicenter/**
+
+
+ META-INF/**
+
+
+
+
+ jacoco-initialize
+
+ prepare-agent
+
+ test-compile
+
+
+ jacoco-site
+ verify
+
+ report
+
+
+
+
+
+
+
+
+ ai-analytic-center-api
+ ai-analytic-center-biz
+
+
+
+ ronglian-releases
+ ronglian releases
+ https://devops.digitalvolvo.com/nexus/repository/newbie-ronglian-maven-releases/
+ true
+
+
+ ronglian-snapshots
+ ronglian snapshots
+ https://devops.digitalvolvo.com/nexus/repository/newbie-ronglian-maven-snapshots/
+ true
+
+
+