<%@LANGUAGE="VBSCRIPT"%> <% Dim Reczsnews Dim Reczsnews_numRows Set Reczsnews = Server.CreateObject("ADODB.Recordset") Reczsnews.ActiveConnection = MM_connzsnews_STRING Reczsnews.Source = "SELECT * FROM newsData ORDER BY news_time DESC" Reczsnews.CursorType = 0 Reczsnews.CursorLocation = 2 Reczsnews.LockType = 1 Reczsnews.Open() Reczsnews_numRows = 0 %> <% Dim Recjynews Dim Recjynews_numRows Set Recjynews = Server.CreateObject("ADODB.Recordset") Recjynews.ActiveConnection = MM_connjynews_STRING Recjynews.Source = "SELECT * FROM newsData ORDER BY news_time DESC" Recjynews.CursorType = 0 Recjynews.CursorLocation = 2 Recjynews.LockType = 1 Recjynews.Open() Recjynews_numRows = 0 %> <% Dim Repeat2__numRows Dim Repeat2__index Repeat2__numRows = 15 Repeat2__index = 0 Recjynews_numRows = Recjynews_numRows + Repeat2__numRows %> <% Dim Repeat1__numRows Dim Repeat1__index Repeat1__numRows = 15 Repeat1__index = 0 Reczsnews_numRows = Reczsnews_numRows + Repeat1__numRows %> <% ' *** Recordset Stats, Move To Record, and Go To Record: declare stats variables Dim Recjynews_total Dim Recjynews_first Dim Recjynews_last ' set the record count Recjynews_total = Recjynews.RecordCount ' set the number of rows displayed on this page If (Recjynews_numRows < 0) Then Recjynews_numRows = Recjynews_total Elseif (Recjynews_numRows = 0) Then Recjynews_numRows = 1 End If ' set the first and last displayed record Recjynews_first = 1 Recjynews_last = Recjynews_first + Recjynews_numRows - 1 ' if we have the correct record count, check the other stats If (Recjynews_total <> -1) Then If (Recjynews_first > Recjynews_total) Then Recjynews_first = Recjynews_total End If If (Recjynews_last > Recjynews_total) Then Recjynews_last = Recjynews_total End If If (Recjynews_numRows > Recjynews_total) Then Recjynews_numRows = Recjynews_total End If End If %> <% Dim MM_paramName %> <% ' *** Move To Record and Go To Record: declare variables Dim MM_rs Dim MM_rsCount Dim MM_size Dim MM_uniqueCol Dim MM_offset Dim MM_atTotal Dim MM_paramIsDefined Dim MM_param Dim MM_index Set MM_rs = Recjynews MM_rsCount = Recjynews_total MM_size = Recjynews_numRows MM_uniqueCol = "" MM_paramName = "" MM_offset = 0 MM_atTotal = false MM_paramIsDefined = false If (MM_paramName <> "") Then MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "") End If %> <% ' *** Move To Record: handle 'index' or 'offset' parameter if (Not MM_paramIsDefined And MM_rsCount <> 0) then ' use index parameter if defined, otherwise use offset parameter MM_param = Request.QueryString("index") If (MM_param = "") Then MM_param = Request.QueryString("offset") End If If (MM_param <> "") Then MM_offset = Int(MM_param) End If ' if we have a record count, check if we are past the end of the recordset If (MM_rsCount <> -1) Then If (MM_offset >= MM_rsCount Or MM_offset = -1) Then ' past end or move last If ((MM_rsCount Mod MM_size) > 0) Then ' last page not a full repeat region MM_offset = MM_rsCount - (MM_rsCount Mod MM_size) Else MM_offset = MM_rsCount - MM_size End If End If End If ' move the cursor to the selected record MM_index = 0 While ((Not MM_rs.EOF) And (MM_index < MM_offset Or MM_offset = -1)) MM_rs.MoveNext MM_index = MM_index + 1 Wend If (MM_rs.EOF) Then MM_offset = MM_index ' set MM_offset to the last possible record End If End If %> <% ' *** Move To Record: if we dont know the record count, check the display range If (MM_rsCount = -1) Then ' walk to the end of the display range for this page MM_index = MM_offset While (Not MM_rs.EOF And (MM_size < 0 Or MM_index < MM_offset + MM_size)) MM_rs.MoveNext MM_index = MM_index + 1 Wend ' if we walked off the end of the recordset, set MM_rsCount and MM_size If (MM_rs.EOF) Then MM_rsCount = MM_index If (MM_size < 0 Or MM_size > MM_rsCount) Then MM_size = MM_rsCount End If End If ' if we walked off the end, set the offset based on page size If (MM_rs.EOF And Not MM_paramIsDefined) Then If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then If ((MM_rsCount Mod MM_size) > 0) Then MM_offset = MM_rsCount - (MM_rsCount Mod MM_size) Else MM_offset = MM_rsCount - MM_size End If End If End If ' reset the cursor to the beginning If (MM_rs.CursorType > 0) Then MM_rs.MoveFirst Else MM_rs.Requery End If ' move the cursor to the selected record MM_index = 0 While (Not MM_rs.EOF And MM_index < MM_offset) MM_rs.MoveNext MM_index = MM_index + 1 Wend End If %> <% ' *** Move To Record: update recordset stats ' set the first and last displayed record Recjynews_first = MM_offset + 1 Recjynews_last = MM_offset + MM_size If (MM_rsCount <> -1) Then If (Recjynews_first > MM_rsCount) Then Recjynews_first = MM_rsCount End If If (Recjynews_last > MM_rsCount) Then Recjynews_last = MM_rsCount End If End If ' set the boolean used by hide region to check if we are on the last record MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount) %> <% ' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters Dim MM_keepNone Dim MM_keepURL Dim MM_keepForm Dim MM_keepBoth Dim MM_removeList Dim MM_item Dim MM_nextItem ' create the list of parameters which should not be maintained MM_removeList = "&index=" If (MM_paramName <> "") Then MM_removeList = MM_removeList & "&" & MM_paramName & "=" End If MM_keepURL="" MM_keepForm="" MM_keepBoth="" MM_keepNone="" ' add the URL parameters to the MM_keepURL string For Each MM_item In Request.QueryString MM_nextItem = "&" & MM_item & "=" If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item)) End If Next ' add the Form variables to the MM_keepForm string For Each MM_item In Request.Form MM_nextItem = "&" & MM_item & "=" If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item)) End If Next ' create the Form + URL string and remove the intial '&' from each of the strings MM_keepBoth = MM_keepURL & MM_keepForm If (MM_keepBoth <> "") Then MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1) End If If (MM_keepURL <> "") Then MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1) End If If (MM_keepForm <> "") Then MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1) End If ' a utility function used for adding additional parameters to these strings Function MM_joinChar(firstItem) If (firstItem <> "") Then MM_joinChar = "&" Else MM_joinChar = "" End If End Function %> <% ' *** Move To Record: set the strings for the first, last, next, and previous links Dim MM_keepMove Dim MM_moveParam Dim MM_moveFirst Dim MM_moveLast Dim MM_moveNext Dim MM_movePrev Dim MM_urlStr Dim MM_paramList Dim MM_paramIndex Dim MM_nextParam MM_keepMove = MM_keepBoth MM_moveParam = "index" ' if the page has a repeated region, remove 'offset' from the maintained parameters If (MM_size > 1) Then MM_moveParam = "offset" If (MM_keepMove <> "") Then MM_paramList = Split(MM_keepMove, "&") MM_keepMove = "" For MM_paramIndex = 0 To UBound(MM_paramList) MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=") - 1) If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex) End If Next If (MM_keepMove <> "") Then MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1) End If End If End If ' set the strings for the move to links If (MM_keepMove <> "") Then MM_keepMove = Server.HTMLEncode(MM_keepMove) & "&" End If MM_urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "=" MM_moveFirst = MM_urlStr & "0" MM_moveLast = MM_urlStr & "-1" MM_moveNext = MM_urlStr & CStr(MM_offset + MM_size) If (MM_offset - MM_size < 0) Then MM_movePrev = MM_urlStr & "0" Else MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size) End If %> 招生就业指导办公室

南方航空公司民航安全员招聘简章


A、中国南方航空简介
天合联盟成员中国南方航空股份有限公司是中国南方航空集团公司属下航空运输主业公司,总部设在广州,有新疆、北方、北京、深圳、海南、黑龙江、吉林、大连、河南、湖北、湖南、广西、珠海直升机等13家分公司和厦门航空、汕头航空、贵州航空、珠海航空、重庆航空等5家控股子公司;在上海、杭州等地设有21个国内营业部,在巴黎、阿姆斯特丹、东京、首尔、洛杉矶、悉尼、曼谷、迪拜、拉各斯等地设有43个国外办事处。
中国南方航空股份有限公司是国内运输飞机最多、航线网络最密集、年客运量最大的航空公司。目前,南航经营包括波音777、747、757、737,空客A330、321、320、319、300在内的客货运输飞机330架,形成了以广州、北京为中心枢纽,密集覆盖国内,全面辐射亚洲,与天合联盟成员密切合作,航线网络通达全球841个目的地,连接162个国家和地区,到达全球各主要城市。
2007年,南航旅客运输量近5700万人次,连续29年居国内各航空公司之首,是国内唯一一家进入世界航空客运前十强的航空公司,全球排名第9位。截至2007年5月20日,南航以连续安全飞行400万小时,获得民航总局颁发的飞行安全最高奖——飞行安全四星奖,成为目前保持安全纪录时间最长的航空公司。
中国南方航空股份有限公司2007年11月15日于人民大会堂正式宣布加入天合联盟,是中国第一家加入全球性航空联盟的国内航空公司。

B、招聘标准
欢迎有志青年加入南航,踊跃报考民航安全员。报考人员必须满足下列基本条件,请在报名前仔细阅读

一 、基本要求:
男性,未婚,通过全国普通高考录取、国民教育系列全日制普通高等学历教育大学专科(含)以上学历。不接受现役军人、武警报名。
注:请自查所毕业的院校应在以下3类之列:
(一)国家教育部承认的国内既有普通高等学历教育招生资格的高等学校(2008年度),请登陆www.moe.edu.cn“公报公告”-“批准学校(学院)名单”进行查询。
(二)国家认可的国内军事院校。
(三)国家认可的港澳台或国外院校。
在读人员毕业时间需在2009年9 月1日之前。

二、年龄、英语、体能测试要求:
(一)大专学历:18--24 周岁(1985年1月1日至1991年12月31日期间出生)
(二)本科及以上学历:18 - 25 周岁(1984年1月1日至1991年12月31日期间出生)
(三)具备一定英语能力,通过公司组织由外部英语考试机构统一安排的英语考试。
(四)达到体能测试基本要求:3000米不慢于17分,100 米不慢于16 秒,单杠引体向上不低于3 个,双杠臂屈伸不低于5 个。

三、身体要求:
(一) 身高175-182 厘米;
(二) 裸视力《C 字表》不低于0.7,无斜眼、无色盲;如视力经过手术矫正,还需携带手术病历(并非诊断证明)。注意:此处视力标准为《 C 字表》测量标准)
(三) 体重标准(KG):身高(厘米数)减110后上下浮动10%的范围;
(四) 五官端正、身体匀称、肤色健康。
(五) 无口吃,无晕车、晕船史;
(六) 无慢性病史、无精神病家族史、遗传病史、癫痫病史;
(七) 无明显的“O”型和“X”型腿;
(八) 无久治不愈的皮肤病,如:头癣、湿疹、牛皮癣、慢性荨麻疹等;
(九) 无骨与关节疾病或畸形;
(十) 无肾炎、血尿、蛋白尿;
(十一) 无肝炎或肝脾肿大;HbsAg呈阴性。

C、报名方式
一、报名时间:2009年3月24日起至2009 年5月4日前;
二、报名方式:请应聘者登陆南航招聘网站job.csair.com,根据网站指引,网上申报简历及其他相关报名表;

D、面试须知
1、面试时间、地点:另行通知;
2、选手参加面试,需持主办方提供的标准报名表、承诺书、身份证、毕业证,以及大1寸近期正面免冠彩色照片2张,签字笔或钢笔。如为应届毕业生尚未毕业,需提供学生证及学校证明,注明姓名、出生年月、所在系专业名称、招收培养方式、身份证号、入校时间、离校时间、是否毕业等信息,加盖学校公章。
3、注意仪容仪表。
4、目测期间,应聘者不应佩戴手表、手链、戒指、首饰,不应穿着高领服装、紧身裤、长靴。
5、选手在面试期间,不得身穿空乘、仿空乘制服以及其他具备行业特征的制服。
6、头发应梳理整齐露出前额及耳朵。
7、选手报名表上的编号与考生一一对应,是唯一的考号,将用于在整个面试过程。
8、面试后,应聘者在指定时间到指定地点等待通知面试结果。合格者留下,不合格者离开。
9、应聘者应服从工作人员的管理和指引,不在招聘场地交头接耳、大声喧哗。
10、选手在参赛期间的交通、食宿自理。
11、面试结果解释权归中国南方航空集团公司和中国南方航空股份有限公司。

 

Copyright © 2009 贵州警官职业学院 招生就业指导办公室

<% Reczsnews.Close() Set Reczsnews = Nothing %> <% Recjynews.Close() Set Recjynews = Nothing %>