All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mapper.MkCommunityTopicMapper.xml Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta10
Show newest version
<?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.github.xujiaji.mk.community.mapper.MkCommunityTopicMapper">

    <select id="selectFrontAll" resultType="com.github.xujiaji.mk.community.dto.FrontTopicDTO">
        SELECT t.id, t.title, t.content, f1.path image, f2.path thumb
        FROM mk_community_topic t
            LEFT JOIN mk_file f1 ON t.image = f1.id
            LEFT JOIN mk_file f2 ON t.thumb = f2.id
    </select>
</mapper>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy