24 lines
792 B
XML
24 lines
792 B
XML
<?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.message.api.base.dao.MsTextMapper">
|
|
|
|
<!-- 通用查询映射结果 -->
|
|
<resultMap id="BaseResultMap" type="com.message.api.base.entity.MsText">
|
|
<id column="id" property="id"/>
|
|
<result column="code" property="code"/>
|
|
<result column="text" property="text"/>
|
|
</resultMap>
|
|
|
|
<!-- 通用查询结果列 -->
|
|
<sql id="Base_Column_List">
|
|
id, code, text
|
|
</sql>
|
|
|
|
<select id="findByCode" resultMap="BaseResultMap" parameterType="java.lang.String">
|
|
select
|
|
<include refid="Base_Column_List"/>
|
|
FROM ms_text where code = #{code}
|
|
</select>
|
|
|
|
</mapper>
|