fuliqi
2025-01-20 9e28453dba6ecf93c6c2234ba38def7c41cf12f0
business/src/main/resources/mapper/ProjectProcessMapper.xml
@@ -65,6 +65,7 @@
        FROM
            t_project_info PI
                LEFT JOIN t_project_process TPP ON TPP.project_id = PI.id AND TPP.deleted = 0 AND PI.deleted = 0
                LEFT JOIN sys_dept d ON d.dept_id = PI.project_owner_unit
        <where>
            <if test="query.projectName != null and query.projectName != ''">
                AND PI.project_name like concat('%', #{query.projectName}, '%')
@@ -72,6 +73,7 @@
            <if test="query.projectCode != null and query.projectCode != ''">
                AND PI.project_code like concat('%', #{query.projectCode}, '%')
            </if>
            ${query.params.dataScope}
        </where>
    </select>