2024-07-15 14:43:57 +08:00
|
|
|
<?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.system.mapper.SelectMapper">
|
|
|
|
|
|
|
|
|
|
<!--获取班组下拉选-->
|
|
|
|
|
<select id="getTeamList" resultType="com.bonus.system.domain.vo.SysSelectVo">
|
|
|
|
|
SELECT team_id AS id,
|
|
|
|
|
CONCAT(team_name,'(',team_name,')') AS name
|
|
|
|
|
FROM t_work_team WHERE del_flag = 0
|
|
|
|
|
</select>
|
2024-07-18 09:00:25 +08:00
|
|
|
<!--工程下拉选-->
|
|
|
|
|
<select id="getProList" resultType="com.bonus.system.domain.vo.SysSelectVo">
|
|
|
|
|
SELECT tp.id,tp.pro_name AS name
|
|
|
|
|
FROM tb_project tp WHERE tp.del_flag = 0
|
|
|
|
|
</select>
|
2024-07-15 14:43:57 +08:00
|
|
|
</mapper>
|