项目部授权班组下拉选

This commit is contained in:
hayu 2025-07-03 09:36:37 +08:00
parent 274b5879ec
commit 7d3d64a1b7
1 changed files with 16 additions and 17 deletions

View File

@ -454,21 +454,20 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<!-- left join `uni_org`.org_user org_user on bzgl_bz.bzz_idcard = org_user.id_card-->
<!-- WHERE bzgl_bz.project_id = #{externalId}-->
<!-- </select>-->
<!-- <select id="getTeamList" resultType="com.bonus.material.common.domain.vo.SelectVo">-->
<!-- /*查询所有班组*/-->
<!-- select bzgl_bz.id,-->
<!-- bzgl_bz.bzmc as name,-->
<!-- bzgl_bz.bzz_name as teamLeaderName,-->
<!-- bzgl_bz.bzz_idcard as teamLeaderIdCard,-->
<!-- bzgl_bz.bz as remark,-->
<!-- bzgl_bz.bz_status as teamStatus,-->
<!-- bzgl_bz.project_id as projectId,-->
<!-- bzgl_bz.project_name as projectName-->
<!-- from `micro-tool`.bzgl_bz bzgl_bz-->
<!-- </select>-->
<select id="getTeamList" resultType="com.bonus.material.common.domain.vo.SelectVo">
SELECT id,
team_name as `name`
FROM `lease_team_info`
</select>
<select id="getTeamList" resultType="com.bonus.material.common.domain.vo.SelectVo">
select bzgl_bz.id,
bzgl_bz.bzmc as name,
bzgl_bz.bzz_name as teamLeaderName,
bzgl_bz.bzz_idcard as teamLeaderIdCard,
bzgl_bz.bz as remark,
bzgl_bz.bz_status as teamStatus,
bzgl_bz.project_id as projectId,
bzgl_bz.project_name as projectName
from `micro-tool`.bzgl_bz bzgl_bz
</select>
<!-- <select id="getTeamList" resultType="com.bonus.material.common.domain.vo.SelectVo">-->
<!-- SELECT id,-->
<!-- team_name as `name`-->
<!-- FROM `lease_team_info`-->
<!-- </select>-->
</mapper>