BUG修复:字段映射不上

This commit is contained in:
MHW
2026-04-14 17:00:49 +08:00
parent 178bceabbb
commit 3ae6a693e1
2 changed files with 27 additions and 19 deletions

View File

@@ -31,7 +31,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
FROM behaviortree
WHERE scenario_id=#{id}
</select>
<select id="selectAllRelationBySceneId" resultType="com.solution.scene.domain.PlatformCommunication"
<resultMap id="PlatformCommunicationResultMap" type="com.solution.scene.domain.PlatformCommunication">
<id property="id" column="id"/>
<result property="commandPlatform" column="command_platform"/>
<result property="subordinatePlatform" column="subordinate_platform"/>
<result property="commandComm" column="command_comm"/>
<result property="subordinateComm" column="subordinate_comm"/>
<result property="scenaryId" column="scenary_id"/>
</resultMap>
<select id="selectAllRelationBySceneId" resultMap="PlatformCommunicationResultMap"
parameterType="java.lang.Integer">
SELECT id,command_platform,subordinate_platform,command_comm,subordinate_comm,scenary_id
FROM platform_communication