13 lines
508 B
XML
13 lines
508 B
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.bonus.leader.performance.manager.select.dao.SelectDao">
|
|
|
|
<select id="getAnnouncementType"
|
|
resultType="com.bonus.leader.performance.manager.select.entity.SelectBean">
|
|
select id as id,
|
|
dict_key as name
|
|
from sys_data_dict
|
|
where parent_id = '1' and is_active = '1' and is_enable = '1'
|
|
</select>
|
|
</mapper> |