无关风月
20 小时以前 d38daf71ef496cd5788c955192ec5ed003fc6d8c
ruoyi-system/src/main/resources/mapper/system/OaApprovalTodoMapper.xml
@@ -21,5 +21,15 @@
    <sql id="Base_Column_List">
        id, application_id, application_code, flow_node_id, user_id, user_name, dept_id, sort_order, status, create_time, handle_time
    </sql>
    <select id="pageList" resultType="com.ruoyi.system.model.OaApprovalTodo">
        select * from oa_approval_todo
        where 1=1
        <if test="query.userId != null">
            and user_id = #{query.userId}
        </if>
        and status = 0
        group by application_id
        order by create_time desc
    </select>
</mapper>