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

mapper.MkCommunityCategoryMapper.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.MkCommunityCategoryMapper">

    <select id="selectFrontAll" resultType="com.github.xujiaji.mk.community.dto.FrontCategoryDTO">
        SELECT c.id, c.title, c.content, f.path thumb
        FROM mk_community_category c
            LEFT JOIN mk_file f
                ON c.thumb = f.id
        WHERE display = 1
        ORDER BY priority DESC
    </select>
</mapper>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy