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

This commit is contained in:
wangqiong
2024-06-05 16:19:22 +08:00
parent bdc6582074
commit 3ee39fbd4b
14 changed files with 11 additions and 11 deletions
+3 -3
View File
@@ -27,8 +27,8 @@
</properties>
<modules>
<module>qomo-kn-financial-forecast-start</module>
<module>qomo-kn-financial-forecast</module>
<module>qomo-kn-cost-manage-start</module>
<module>qomo-kn-cost-manage</module>
</modules>
<repositories>
@@ -95,7 +95,7 @@
<dependencies>
<dependency>
<groupId>com.zzsmart.qomo</groupId>
<artifactId>qomo-kn-financial-forecast</artifactId>
<artifactId>qomo-kn-cost-manage</artifactId>
<version>${revision}</version>
</dependency>
</dependencies>
@@ -9,7 +9,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>qomo-kn-financial-forecast-start</artifactId>
<artifactId>qomo-kn-cost-manage-start</artifactId>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
@@ -36,7 +36,7 @@
<dependency>
<groupId>com.zzsmart.qomo</groupId>
<artifactId>qomo-kn-financial-forecast</artifactId>
<artifactId>qomo-kn-cost-manage</artifactId>
</dependency>
</dependencies>
@@ -1,4 +1,4 @@
package com.zzsmart.qomo.kn.forecast.financial;
package com.zzsmart.qomo.kn.cost.manage;
import lombok.extern.slf4j.Slf4j;
import org.jeecg.common.util.oConvertUtils;
@@ -21,15 +21,15 @@ import java.net.UnknownHostException;
@SpringBootApplication (scanBasePackages ={"org.jeecg", "com.zzsmart.qomo"})
//@EnableAutoConfiguration(exclude={MongoAutoConfiguration.class})
@EnableAsync
public class QomoForecastApplication extends SpringBootServletInitializer {
public class QomoCostManageApplication extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(QomoForecastApplication.class);
return application.sources(QomoCostManageApplication.class);
}
public static void main(String[] args) throws UnknownHostException {
ConfigurableApplicationContext application = SpringApplication.run(QomoForecastApplication.class, args);
ConfigurableApplicationContext application = SpringApplication.run(QomoCostManageApplication.class, args);
Environment env = application.getEnvironment();
String ip = InetAddress.getLocalHost().getHostAddress();
String port = env.getProperty("server.port");
@@ -9,7 +9,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>qomo-kn-financial-forecast</artifactId>
<artifactId>qomo-kn-cost-manage</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
@@ -1,4 +1,4 @@
package com.zzsmart.qomo.kn.forecast.financial.constants;
package com.zzsmart.qomo.kn.cost.manage.constants;
import cn.hutool.core.collection.CollUtil;