<?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="cn.lili.modules.lmk.mapper.TemplateConstomizeTitleMapper">
|
|
<!-- 通用查询映射结果 -->
|
<resultMap id="BaseResultMap" type="cn.lili.modules.lmk.domain.vo.TemplateConstomizeTitleVO">
|
<id column="id" property="id"/>
|
<result column="template_id" property="templateId" />
|
<result column="template_title" property="templateTitle" />
|
<result column="content_type" property="contentType" />
|
</resultMap>
|
|
|
|
|
|
|
|
<select id="getById" resultMap="BaseResultMap">
|
SELECT
|
LTCT.template_id,
|
LTCT.template_title,
|
LTCT.content_type,
|
LTCT.id
|
FROM
|
lmk_template_constomize_title LTCT
|
WHERE
|
LTCT.id = #{id} AND LTCT.delete_flag = 0
|
</select>
|
|
|
<select id="getPage" resultMap="BaseResultMap">
|
SELECT
|
LTCT.template_id,
|
LTCT.template_title,
|
LTCT.content_type,
|
LTCT.id
|
FROM
|
lmk_template_constomize_title LTCT
|
WHERE
|
LTCT.delete_flag = 0
|
</select>
|
|
</mapper>
|