Lius
2025-03-31 943d055689b2df81fa5c60bed5f40dae6135f713
lxzn-module-system/lxzn-system-biz/src/main/java/org/jeecg/modules/system/mapper/xml/MdcProductionMapper.xml
@@ -111,6 +111,7 @@
                AND t1.org_type = '2'
            </otherwise>
        </choose>
        ORDER BY t1.production_order
    </select>
    <select id="findTeamValue" resultType="java.lang.String">
@@ -124,4 +125,17 @@
            #{productionId}
        </foreach>
    </select>
    <select id="findProIdsByUId" resultType="java.lang.String">
        SELECT
            pro_id
        FROM
            mdc_user_production
        WHERE
            pro_id IN
            <foreach collection="allProductionIds" item = "productionId" index = "index" open = "(" close= ")" separator = ",">
                #{productionId}
            </foreach>
          AND user_id = #{userId}
    </select>
</mapper>