24 lines
1.2 KiB
XML
24 lines
1.2 KiB
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.rymcu.vertical.mapper.TopicMapper">
|
||
|
<resultMap id="BaseResultMap" type="com.rymcu.vertical.entity.Topic">
|
||
|
<!--
|
||
|
WARNING - @mbg.generated
|
||
|
-->
|
||
|
<id column="id" property="idTopic"/>
|
||
|
<id column="topic_title" property="topicTitle"/>
|
||
|
<id column="topic_uri" property="topicUri"/>
|
||
|
<id column="topic_description" property="topicDescription"/>
|
||
|
<id column="topic_type" property="topicType"/>
|
||
|
<id column="topic_sort" property="topicSort"/>
|
||
|
<id column="topic_icon_path" property="topicIconPath"/>
|
||
|
<id column="topic_nva" property="topicNva"/>
|
||
|
<id column="topic_tag_count" property="topicTagCount"/>
|
||
|
<id column="topic_status" property="topicStatus"/>
|
||
|
<id column="created_time" property="createdTime"/>
|
||
|
<id column="updated_time" property="updatedTime"/>
|
||
|
</resultMap>
|
||
|
<select id="selectTopicNav" resultMap="BaseResultMap">
|
||
|
select id,topic_title,topic_uri,topic_icon_path from vertical_topic where topic_nva = 0 and topic_status = 0 order by topic_sort
|
||
|
</select>
|
||
|
</mapper>
|