This commit is contained in:
2026-03-26 23:37:03 +08:00
22 changed files with 371 additions and 110 deletions

View File

@@ -85,6 +85,16 @@
WHERE platform_id=#{platformId} AND platform_component.type = "comm"
</select>
<resultMap id="VPBasicPlatformMap" type="com.solution.rule.domain.BasicPlatform">
<result property="id" column="id"/>
<result property="name" column="name"/>
<result property="description" column="description"/>
</resultMap>
<select id="findAllBasicPlatformComponents" resultMap="VPBasicPlatformMap">
SELECT *
FROM platform
</select>
<resultMap id="VPlatformMap" type="com.solution.rule.domain.Platform">
<result property="id" column="id"/>
<result property="name" column="name"/>