UPDATE: VERSION-20260327

This commit is contained in:
libertyspy
2026-03-27 10:02:59 +08:00
parent 41ba11dc9b
commit 505092bcf4
4 changed files with 18 additions and 0 deletions

View File

@@ -14,6 +14,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="xmlContent" column="xml_content" />
</resultMap>
<select id="findOneByPlatformId" resultMap="BehaviortreeResult">
select * from behaviortree
where platform_id=#{platformId}
limit 1
</select>
<sql id="selectBehaviortreeVo">
select id, name, description, created_at, updated_at, english_name, xml_content from behaviortree
</sql>