完善项目结构

This commit is contained in:
老齐
2024-10-22 14:03:33 +08:00
parent 16d5992fde
commit d70f3264cd
1001 changed files with 39494 additions and 248 deletions
+2 -3
View File
@@ -18,9 +18,8 @@
<name>api</name>
<url>http://maven.apache.org</url>
<modules>
<module>auth-api</module>
<module>oms-api</module>
<module>tms-api</module>
<module>sys-api</module>
<module>scm-api</module>
</modules>
<properties>
<java.version>17</java.version>
+1 -1
View File
@@ -13,7 +13,7 @@
<relativePath/>
</parent>
<groupId>com.qihang.oms</groupId>
<artifactId>oms-api</artifactId>
<artifactId>scm-api</artifactId>
<packaging>jar</packaging>
<name>oms-api</name>
@@ -10,11 +10,11 @@ import org.springframework.context.annotation.ComponentScan;
@MapperScan("com.qihang.oms.mapper")
@ComponentScan(basePackages={"com.qihang"})
@SpringBootApplication
public class OmsApi {
public class ScmApi {
public static void main( String[] args )
{
System.out.println( "Hello oms-api!" );
SpringApplication.run(OmsApi.class, args);
SpringApplication.run(ScmApi.class, args);
}
}

Some files were not shown because too many files have changed in this diff Show More