26 lines
768 B
XML
26 lines
768 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.aqgqj.app.dao.SelectAppDao">
|
||
|
|
<select id="getToolsSelect" resultType="com.bonus.aqgqj.app.entity.SamplesManageAppVo">
|
||
|
|
select
|
||
|
|
id,
|
||
|
|
dict_name as name
|
||
|
|
from
|
||
|
|
sys_distinct
|
||
|
|
where
|
||
|
|
p_id = 92
|
||
|
|
and del_flag = 0
|
||
|
|
</select>
|
||
|
|
|
||
|
|
<select id="getTestTeamSelected" resultType="com.bonus.aqgqj.app.entity.SamplesManageAppVo">
|
||
|
|
SELECT
|
||
|
|
id,
|
||
|
|
team_name AS name
|
||
|
|
FROM
|
||
|
|
tb_team
|
||
|
|
WHERE
|
||
|
|
del_flag = 0
|
||
|
|
AND team_type_code =2
|
||
|
|
</select>
|
||
|
|
</mapper>
|