29 lines
1.1 KiB
XML
29 lines
1.1 KiB
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.ProjectManagerDao">
|
||
|
|
<select id="getBranchName" resultType="com.bonus.leader.performance.manager.select.entity.SelectBean">
|
||
|
|
select id,
|
||
|
|
org_name as name
|
||
|
|
from sys_organization
|
||
|
|
where `level` = '1'
|
||
|
|
and is_enable = '1'
|
||
|
|
and is_active = '1'
|
||
|
|
</select>
|
||
|
|
<select id="getVoltageLevel" resultType="com.bonus.leader.performance.manager.select.entity.SelectBean">
|
||
|
|
select id,
|
||
|
|
dict_key as name
|
||
|
|
from sys_data_dict
|
||
|
|
where parent_id = '4'
|
||
|
|
and is_active = '1'
|
||
|
|
and is_enable = '1'
|
||
|
|
</select>
|
||
|
|
<select id="getProjectName" resultType="com.bonus.leader.performance.manager.select.entity.SelectBean">
|
||
|
|
select id,
|
||
|
|
org_name as name
|
||
|
|
from sys_organization
|
||
|
|
where `level` = '2'
|
||
|
|
and is_enable = '1'
|
||
|
|
and is_active = '1'
|
||
|
|
</select>
|
||
|
|
</mapper>
|