Просмотр исходного кода

修改项目名和模块名为qomo-kn-cost-manage

wangqiong 2 лет назад
Родитель
Сommit
3ee39fbd4b

+ 3
- 3
pom.xml Просмотреть файл

27
     </properties>
27
     </properties>
28
 
28
 
29
     <modules>
29
     <modules>
30
-        <module>qomo-kn-financial-forecast-start</module>
31
-        <module>qomo-kn-financial-forecast</module>
30
+        <module>qomo-kn-cost-manage-start</module>
31
+        <module>qomo-kn-cost-manage</module>
32
     </modules>
32
     </modules>
33
 
33
 
34
     <repositories>
34
     <repositories>
95
         <dependencies>
95
         <dependencies>
96
             <dependency>
96
             <dependency>
97
                 <groupId>com.zzsmart.qomo</groupId>
97
                 <groupId>com.zzsmart.qomo</groupId>
98
-                <artifactId>qomo-kn-financial-forecast</artifactId>
98
+                <artifactId>qomo-kn-cost-manage</artifactId>
99
                 <version>${revision}</version>
99
                 <version>${revision}</version>
100
             </dependency>
100
             </dependency>
101
         </dependencies>
101
         </dependencies>

qomo-kn-financial-forecast-start/pom.xml → qomo-kn-cost-manage-start/pom.xml Просмотреть файл

9
     </parent>
9
     </parent>
10
     <modelVersion>4.0.0</modelVersion>
10
     <modelVersion>4.0.0</modelVersion>
11
 
11
 
12
-    <artifactId>qomo-kn-financial-forecast-start</artifactId>
12
+    <artifactId>qomo-kn-cost-manage-start</artifactId>
13
 
13
 
14
     <properties>
14
     <properties>
15
         <maven.deploy.skip>true</maven.deploy.skip>
15
         <maven.deploy.skip>true</maven.deploy.skip>
36
 
36
 
37
         <dependency>
37
         <dependency>
38
             <groupId>com.zzsmart.qomo</groupId>
38
             <groupId>com.zzsmart.qomo</groupId>
39
-            <artifactId>qomo-kn-financial-forecast</artifactId>
39
+            <artifactId>qomo-kn-cost-manage</artifactId>
40
         </dependency>
40
         </dependency>
41
     </dependencies>
41
     </dependencies>
42
 
42
 

qomo-kn-financial-forecast-start/src/main/assembly/package.xml → qomo-kn-cost-manage-start/src/main/assembly/package.xml Просмотреть файл


qomo-kn-financial-forecast-start/src/main/java/com/zzsmart/qomo/kn/forecast/financial/QomoForecastApplication.java → qomo-kn-cost-manage-start/src/main/java/com/zzsmart/qomo/kn/cost/manage/QomoCostManageApplication.java Просмотреть файл

1
-package com.zzsmart.qomo.kn.forecast.financial;
1
+package com.zzsmart.qomo.kn.cost.manage;
2
 
2
 
3
 import lombok.extern.slf4j.Slf4j;
3
 import lombok.extern.slf4j.Slf4j;
4
 import org.jeecg.common.util.oConvertUtils;
4
 import org.jeecg.common.util.oConvertUtils;
21
 @SpringBootApplication (scanBasePackages ={"org.jeecg", "com.zzsmart.qomo"})
21
 @SpringBootApplication (scanBasePackages ={"org.jeecg", "com.zzsmart.qomo"})
22
 //@EnableAutoConfiguration(exclude={MongoAutoConfiguration.class})
22
 //@EnableAutoConfiguration(exclude={MongoAutoConfiguration.class})
23
 @EnableAsync
23
 @EnableAsync
24
-public class QomoForecastApplication extends SpringBootServletInitializer {
24
+public class QomoCostManageApplication extends SpringBootServletInitializer {
25
 
25
 
26
     @Override
26
     @Override
27
     protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
27
     protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
28
-        return application.sources(QomoForecastApplication.class);
28
+        return application.sources(QomoCostManageApplication.class);
29
     }
29
     }
30
 
30
 
31
     public static void main(String[] args) throws UnknownHostException {
31
     public static void main(String[] args) throws UnknownHostException {
32
-        ConfigurableApplicationContext application = SpringApplication.run(QomoForecastApplication.class, args);
32
+        ConfigurableApplicationContext application = SpringApplication.run(QomoCostManageApplication.class, args);
33
         Environment env = application.getEnvironment();
33
         Environment env = application.getEnvironment();
34
         String ip = InetAddress.getLocalHost().getHostAddress();
34
         String ip = InetAddress.getLocalHost().getHostAddress();
35
         String port = env.getProperty("server.port");
35
         String port = env.getProperty("server.port");

qomo-kn-financial-forecast-start/src/main/resources/application-dev.yml → qomo-kn-cost-manage-start/src/main/resources/application-dev.yml Просмотреть файл


qomo-kn-financial-forecast-start/src/main/resources/application-prod.yml → qomo-kn-cost-manage-start/src/main/resources/application-prod.yml Просмотреть файл


qomo-kn-financial-forecast-start/src/main/resources/application.yml → qomo-kn-cost-manage-start/src/main/resources/application.yml Просмотреть файл


qomo-kn-financial-forecast-start/src/main/resources/jeecg/jeecg_config.properties → qomo-kn-cost-manage-start/src/main/resources/jeecg/jeecg_config.properties Просмотреть файл


qomo-kn-financial-forecast-start/src/main/resources/jeecg/jeecg_database.properties → qomo-kn-cost-manage-start/src/main/resources/jeecg/jeecg_database.properties Просмотреть файл


qomo-kn-financial-forecast-start/src/main/resources/liquibase/changelogs/change.sql → qomo-kn-cost-manage-start/src/main/resources/liquibase/changelogs/change.sql Просмотреть файл


qomo-kn-financial-forecast-start/src/main/resources/liquibase/changelogs/qomo-boot-init.sql → qomo-kn-cost-manage-start/src/main/resources/liquibase/changelogs/qomo-boot-init.sql Просмотреть файл


qomo-kn-financial-forecast-start/src/main/resources/liquibase/master.xml → qomo-kn-cost-manage-start/src/main/resources/liquibase/master.xml Просмотреть файл


qomo-kn-financial-forecast/pom.xml → qomo-kn-cost-manage/pom.xml Просмотреть файл

9
     </parent>
9
     </parent>
10
     <modelVersion>4.0.0</modelVersion>
10
     <modelVersion>4.0.0</modelVersion>
11
 
11
 
12
-    <artifactId>qomo-kn-financial-forecast</artifactId>
12
+    <artifactId>qomo-kn-cost-manage</artifactId>
13
 
13
 
14
     <properties>
14
     <properties>
15
         <maven.compiler.source>8</maven.compiler.source>
15
         <maven.compiler.source>8</maven.compiler.source>

qomo-kn-financial-forecast/src/main/java/com/zzsmart/qomo/kn/forecast/financial/constants/Constants.java → qomo-kn-cost-manage/src/main/java/com/zzsmart/qomo/kn/cost/manage/constants/Constants.java Просмотреть файл

1
-package com.zzsmart.qomo.kn.forecast.financial.constants;
1
+package com.zzsmart.qomo.kn.cost.manage.constants;
2
 
2
 
3
 import cn.hutool.core.collection.CollUtil;
3
 import cn.hutool.core.collection.CollUtil;
4
 
4