1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <?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.hrt.system.mapper.sys.QuickEntryMapper">
|
| <select id="listQuickEntryVo" resultType="com.hrt.system.domain.vo.AppQuickEntryVo">
| SELECT
| entry_id entryId,
| entry_url entryUrl,
| entry_name entryName,
| target_type targetType,
| link_url linkUrl,
| jump_id jumpId
| FROM t_quick_entry WHERE del_flag = 0
| ORDER BY entry_sort DESC
| </select>
|
| </mapper>
|
|