zhangherong
2025-07-03 1b5a723592ea63e5eec0bdeef7855b9c40e9df71
1
2
3
4
5
6
7
8
9
<?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="org.jeecg.modules.system.mapper.MdcUserProductionMapper">
 
    <!--根据指定用户id查询产线id集合-->
    <select id="queryProductionIdsByUserId" resultType="java.lang.String">
        SELECT pro_id FROM mdc_user_production WHERE user_id = #{userId}
    </select>
</mapper>