This commit is contained in:
tiger_zhou 2023-02-27 17:42:29 +08:00
parent b555ca2ac3
commit 566378c4f8
8 changed files with 32 additions and 8 deletions

4
.gitmodules vendored
View File

@ -1,6 +1,6 @@
[submodule "ecs"]
path = ecs
url = https://git.code.tencent.com/joylink-common/ecs.git
[submodule "jl-rtss-simulation/ncc-message"]
path = jl-rtss-simulation/ncc-message
[submodule "jl-rtss-simulation/ncc/ncc-message"]
path = jl-rtss-simulation/ncc/ncc-message
url = https://git.code.tencent.com/lian-cbtc/NCC/ncc-message.git

@ -0,0 +1 @@
Subproject commit 4ea060f237cf028dfa934caea3fb29934358ec78

@ -1 +0,0 @@
Subproject commit 93ac97d80ec4821262076af460cb80e18010e65f

View File

@ -19,7 +19,7 @@
<dependencies>
<dependency>
<groupId>club.joylink.rtss</groupId>
<artifactId>ncc-message</artifactId>
<artifactId>simulation-message</artifactId>
<version>0.1</version>
</dependency>
</dependencies>

View File

@ -14,7 +14,7 @@ import org.springframework.web.bind.annotation.*;
* @since 2023-02-27
*/
@RestController
@RequestMapping("/api/simulation/v1")
@RequestMapping("/api/simulation/ncc/v1")
public class RtsNccMapDataController {
@Autowired
private IRtsNccMapDataRepository mapDataService;

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="club.joylink.rtss.simulation.ncc.mapper.RtsNccMapDataMapper">
</mapper>

View File

@ -4,9 +4,9 @@
<modelVersion>4.0.0</modelVersion>
<modules>
<module>ISCS</module>
<module>NCC</module>
<module>ncc-message</module>
</modules>
<module>ncc</module>
<module>simulation-message</module>
</modules>
<parent>
<groupId>club.joylink.rtss</groupId>
<artifactId>rtss-server</artifactId>

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>club.joylink.rtss</groupId>
<artifactId>simulation</artifactId>
<version>0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>simulation-message</artifactId>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
</project>