throw new SecurityException( "该角色名称'"+role.getName()+"'已经存在!" );
*/
if( update ){
Role db_role = get( role );
if( db_role == null )
throw new DaoException( "该角色已不存在,不能进行修改操作!" );
db_role.setName( role.getName() );
db_role.setDescription( role.getDescription() );
//修改审核拒绝的角色进入待审核列表
if(AuditStatus.AUDIT_REJECT.equals(db_role.getStatus()))