修改项目名和模块名为qomo-kn-cost-manage
This commit is contained in:
@@ -27,8 +27,8 @@
|
|||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>qomo-kn-financial-forecast-start</module>
|
<module>qomo-kn-cost-manage-start</module>
|
||||||
<module>qomo-kn-financial-forecast</module>
|
<module>qomo-kn-cost-manage</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
@@ -95,7 +95,7 @@
|
|||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.zzsmart.qomo</groupId>
|
<groupId>com.zzsmart.qomo</groupId>
|
||||||
<artifactId>qomo-kn-financial-forecast</artifactId>
|
<artifactId>qomo-kn-cost-manage</artifactId>
|
||||||
<version>${revision}</version>
|
<version>${revision}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<artifactId>qomo-kn-financial-forecast-start</artifactId>
|
<artifactId>qomo-kn-cost-manage-start</artifactId>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.deploy.skip>true</maven.deploy.skip>
|
<maven.deploy.skip>true</maven.deploy.skip>
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.zzsmart.qomo</groupId>
|
<groupId>com.zzsmart.qomo</groupId>
|
||||||
<artifactId>qomo-kn-financial-forecast</artifactId>
|
<artifactId>qomo-kn-cost-manage</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
+4
-4
@@ -1,4 +1,4 @@
|
|||||||
package com.zzsmart.qomo.kn.forecast.financial;
|
package com.zzsmart.qomo.kn.cost.manage;
|
||||||
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.jeecg.common.util.oConvertUtils;
|
import org.jeecg.common.util.oConvertUtils;
|
||||||
@@ -21,15 +21,15 @@ import java.net.UnknownHostException;
|
|||||||
@SpringBootApplication (scanBasePackages ={"org.jeecg", "com.zzsmart.qomo"})
|
@SpringBootApplication (scanBasePackages ={"org.jeecg", "com.zzsmart.qomo"})
|
||||||
//@EnableAutoConfiguration(exclude={MongoAutoConfiguration.class})
|
//@EnableAutoConfiguration(exclude={MongoAutoConfiguration.class})
|
||||||
@EnableAsync
|
@EnableAsync
|
||||||
public class QomoForecastApplication extends SpringBootServletInitializer {
|
public class QomoCostManageApplication extends SpringBootServletInitializer {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
|
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
|
||||||
return application.sources(QomoForecastApplication.class);
|
return application.sources(QomoCostManageApplication.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) throws UnknownHostException {
|
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();
|
Environment env = application.getEnvironment();
|
||||||
String ip = InetAddress.getLocalHost().getHostAddress();
|
String ip = InetAddress.getLocalHost().getHostAddress();
|
||||||
String port = env.getProperty("server.port");
|
String port = env.getProperty("server.port");
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<artifactId>qomo-kn-financial-forecast</artifactId>
|
<artifactId>qomo-kn-cost-manage</artifactId>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.source>8</maven.compiler.source>
|
<maven.compiler.source>8</maven.compiler.source>
|
||||||
+1
-1
@@ -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;
|
import cn.hutool.core.collection.CollUtil;
|
||||||
|
|
||||||
Reference in New Issue
Block a user