合并到主分支 #12
@@ -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>
|
||||
|
||||
+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 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
-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;
|
||||
|
||||
Reference in New Issue
Block a user