public void process(ExecutionType type, String procDefKey,
String procInstId, String bizKey) {
RoleChange rc = this.roleChangeManager.get(bizKey);
RoleAudit roleAudit = new RoleAudit();
roleAudit.setRoleChange(rc);//关联角色变更
roleAudit.setUser( null );
boolean passed = ExecutionType.SUBMIT.equals(type);
roleAudit.setResult(passed?AuditResult.LAST_AUDIT_PASSED:AuditResult.LAST_AUDIT_REJECT);
this.audit(roleAudit, rc);
}