这个是过程的一部分,是声明变量的部分,这些变量在下面的过程中会用到
cursor audit_summary_cursor is -----声明一个叫audit_summary_cursor 的游标
select m.matrix_id ,afd.top_dept_id from matrix m ,af_departments afd
where afd.dept_id = m.belong_to
and afd.dept_level = pReportLevel;--------这个游标是上述符合条件的数据
vmatrix_id matrix.matrix_id%type; --------这个是把vmatrix_id的类型和matrix.matrix_id字段的类型一致
vtop_dept_id af_departments.top_dept_id%type;--同上