You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB

<?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.hc.business.mapper.MsgsAttachmentMapper">
<resultMap type="com.hc.business.model.MsgsAttachment" id="MsgsAttachmentMap">
<result property="attachmentId" column="attachment_id" jdbcType="INTEGER"/>
<result property="msgId" column="msg_id" jdbcType="INTEGER"/>
<result property="name" column="name" jdbcType="VARCHAR"/>
<result property="content" column="content" jdbcType="VARCHAR"/>
<result property="url" column="url" jdbcType="VARCHAR"/>
<result property="indexNum" column="index_num" jdbcType="INTEGER"/>
</resultMap>
<sql id="Base_Column_List">
attachment_id,
msg_id,
name,
content,
url,
index_num
</sql>
<select id="queryByMsgId" resultType="com.hc.business.model.MsgsAttachment">
SELECT
<include refid="Base_Column_List"/>
FROM msgs_attachment
WHERE msg_id =#{msgId}
</select>
</mapper>