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.

33 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.NewsAttachmentMapper">
<resultMap type="com.hc.business.model.NewsAttachment" id="NewsAttachmentMap">
<result property="attachmentId" column="attachment_id" jdbcType="INTEGER"/>
<result property="newsId" column="news_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="index" column="index_num" jdbcType="INTEGER"/>
</resultMap>
<sql id="Base_Column_List">
attachment_id,
news_id,
name,
content,
url,
index_num
</sql>
<select id="queryByNewsId" resultType="com.hc.business.model.NewsAttachment">
SELECT
<include refid="Base_Column_List"/>
FROM news_attachment
WHERE news_id =#{newsId}
</select>
</mapper>