| | |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.SvyLibTopicMapper"> |
| | | |
| | | <resultMap type="SvyLibTopic" id="SvyLibTopicResult"> |
| | | <resultMap type="com.smartor.domain.SvyLibTopic" id="SvyLibTopicResult"> |
| | | <result property="topicid" column="topicid" /> |
| | | <result property="oldid" column="oldid" /> |
| | | <result property="svyid" column="svyid" /> |
| | |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | <result property="tag" column="tag" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectSvyLibTopicVo"> |
| | | select topicid, oldid, svyid, topictype, topiccode, topic, sort, ismandatory, ishide, del_flag, orgid, create_by, create_time, update_by, update_time, isupload, upload_time from svy_lib_topic |
| | | select topicid, oldid, svyid, topictype, topiccode, topic, sort, ismandatory, ishide, del_flag, orgid, create_by, create_time, update_by, update_time, isupload, upload_time,tag from svy_lib_topic |
| | | </sql> |
| | | |
| | | <select id="selectSvyLibTopicList" parameterType="SvyLibTopic" resultMap="SvyLibTopicResult"> |
| | | <include refid="selectSvyLibTopicVo"/> |
| | | <where> |
| | | <if test="oldid != null "> and oldid = #{oldid}</if> |
| | | <if test="svyid != null "> and svyid = #{svyid}</if> |
| | | <if test="topictype != null "> and topictype = #{topictype}</if> |
| | | <if test="topiccode != null and topiccode != ''"> and topiccode = #{topiccode}</if> |
| | | <if test="topic != null and topic != ''"> and topic = #{topic}</if> |
| | | <if test="sort != null "> and sort = #{sort}</if> |
| | | <if test="ismandatory != null "> and ismandatory = #{ismandatory}</if> |
| | | <if test="ishide != null "> and ishide = #{ishide}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | <if test="tag != null">tag,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="oldid != null">#{oldid},</if> |
| | |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | <if test="tag != null">#{tag},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | |
| | | #{topicid} |
| | | </foreach> |
| | | </delete> |
| | | |
| | | <select id="showTopic" resultType="com.smartor.domain.SvyLibTopicAndOptionRes" |
| | | parameterType="com.smartor.domain.SvyTopicReq"> |
| | | SELECT a.topicid, a.topiccode, a.topic, a.topictype, a.tag, b.optioncode, b.optioncontent |
| | | FROM svy_lib_topic a, |
| | | svy_lib_topicoption b |
| | | WHERE a.topicid = b.topicid |
| | | <if test="topic != null and topic != ''"> |
| | | and a.topic LIKE concat('%', #{topic}, '%') |
| | | </if> |
| | | <if test="topicType != null and topicType != ''"> |
| | | and a.topictype = #{topicType} |
| | | </if> |
| | | <if test="tag != null and tag != ''"> |
| | | and a.tag LIKE concat('%', #{tag}, '%') |
| | | </if> |
| | | GROUP BY a.topic, b.optioncode |
| | | </select> |
| | | </mapper> |