fix
Helius
2021-09-27 1326c8bcf6094f48688a36dfc8b9c3de5e66e8b8
src/main/resources/mapper/modules/MallMemberMapper.xml
@@ -148,4 +148,16 @@
        </foreach >
        order by id desc
    </select>
    <select id="getAgentLevelListInPage" resultType="cc.mrbird.febs.mall.vo.AdminAgentLevelVo">
        SELECT
            a.id,b.description name
        FROM
            data_dictionary_custom a
                left JOIN data_dictionary_custom b on a.code = b.code
        where a.type = 'AGENT_LEVEL_REQUIRE'
        GROUP BY a.id
        ORDER BY
            a.CREATED_TIME DESC
    </select>
</mapper>