UPDATE: VERSION-20260331

This commit is contained in:
libertyspy
2026-03-31 14:33:02 +08:00
parent a0d8f555f9
commit a4d9e8d8eb
5 changed files with 142 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?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="com.solution.system.mapper.HbNodeCommandMapper">
<resultMap type="com.solution.system.domain.HbNodeCommand" id="HbNodeCommandMapperMap">
<result property="id" column="id"/>
<result property="command" column="command"/>
<result property="description" column="description"/>
<result property="chineseName" column="chinese_name"/>
</resultMap>
<select id="findAll" resultMap="HbNodeCommandMapperMap">
select *
from bh_node_command
</select>
</mapper>