吉安感知网项目-后端
xiebin
2026-04-01 eeb3b5c9c794a35d7b7f3c8e56f9eef8eb8d3451
drone-service/drone-gd/src/main/java/org/sxkj/gd/orderdata/mapper/GdApplicationInnovationMapper.xml
@@ -25,18 +25,25 @@
    <select id="selectGdApplicationInnovationPage" resultMap="gdApplicationInnovationResultMap">
        select * from ja_gd_application_innovation
        select
            *
        from
            ja_gd_application_innovation
        <where>
                and is_deleted = 0
            <if test="param2.caseName != null and param2.caseName != ''">
                and case_name like concat('%',#{param2.caseName},'%')
            </if>
            <if test="param2.innovationStatus != null and param2.innovationStatus != ''">
                and innovation_status = #{param2.innovationStatus}
            </if>
                and is_deleted = 0
            <if test="param2.deptList != null and param2.deptList.size > 0">
                and create_dept in
                <foreach collection="param2.deptList" item="deptId" open="(" separator="," close=")">
                    #{deptId}
                </foreach>
            </if>
        </where>
    </select>