freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

企業(yè)員工管理系統(tǒng)的設(shè)計(jì)與實(shí)現(xiàn)—免費(fèi)畢業(yè)設(shè)計(jì)論文-閱讀頁

2024-12-19 05:47本頁面
  

【正文】 信息管理模塊分為員工端和管理員端的。 圖 52 員工 端 信息管理模塊 第 15 頁 共 26 頁 個(gè)人信息查看子模塊界面如下: 圖 53 個(gè)人信息查看子模塊 在代碼實(shí)現(xiàn)上,用 session 函數(shù)來繼承在員工登陸后臺(tái)處理程序的 session 函數(shù)來對(duì)應(yīng),以此來確定登陸員工的信息。uid=sa。amp。39。 圖 54 修改密碼 當(dāng)員工輸入新密碼后,即使用 sql=update gerenxinxi set mima=39。xinmimaamp。 where mima=39。session(mima)amp。 這條 SQL 語 句將新的密碼插入對(duì)應(yīng)的數(shù)據(jù)庫中,關(guān)鍵代碼入下。uid=sa。amp。39。amp。39。 第 17 頁 共 26 頁 圖 55 管理員端信息管理主頁面 在 修改員工信息子模塊中,管理需先輸入要修改的員工的工號(hào),來唯一確定員工,然后進(jìn)入修改頁面。關(guān)鍵代碼如下: % set con=() dsn=data。pwd= xingming=request(xingming) shezhimima=request(shezhimima) querenmima=request(querenmima) xingbie=request(xingbie) =request() bumenming=request(bumenming) zhiwei=request(zhiwei) phone=request(phone) set obj=(update gerenxinxi set xingming=39。xingmingamp。, mima=39。shezhimimaamp。,xingbie=39。xingbieamp。,=39。amp。,bumenming=39。bumenmingamp。,zhiwei=39。zhiweiamp。,phone=39。phoneamp。 where gonghao=39。session(gonghao)amp。) 用戶已經(jīng)成功修改 % 其中用到 SQL 的 updata 語句對(duì)數(shù)據(jù)庫進(jìn)行更新 。 第 18 頁 共 26 頁 員工端消息管理 模塊 員工端 消息管理模塊分為事務(wù)管理,公告消息管理,內(nèi)部消息管理三個(gè)子模塊 。 圖 56 請(qǐng)假申請(qǐng) 在請(qǐng)假功能實(shí)現(xiàn)中,員工輸入必要信息后,后臺(tái)程序?qū)?duì)此進(jìn)行處理,將其插入到 qingjiashenqing 數(shù)據(jù)庫表中。關(guān)鍵代碼如下 set con=() dsn=data。pwd= xingming=request(xingming) qingjiashijian=now( ) qingjialeixing=request(qingjialeixing) qingjiachangdu=request(qingjiachangdu) qingjialiyou=request(qingjialiyou) strsql=insert into qingjiashenqing(xingming,qingjiashijian,qingjiachangdu,qingjialeixing,qingjialiyou) values(39。xingmingamp。,39。qingjiashijianamp。,39。qingjiachangduamp。,39。qingjialeixingamp。,39。qingjialiyouamp。) (strsql) 申請(qǐng)成功 end if % 公告消息管理和內(nèi)部消息管理 這兩個(gè)子模塊是為了方便管理者通知消息和員工之間的內(nèi)部交流而設(shè)置的。在內(nèi)部消息管理子模塊中員工可以選擇各個(gè)部門的員工給他發(fā)送信息,達(dá)到在互聯(lián)網(wǎng)上實(shí)現(xiàn)交流的目的。關(guān)鍵代碼入下: % set con=() dsn=data。pwd= sql=select * from gonggao set rs= (sql) % table width=75% border=1 tr td公告時(shí)間 /td td公告內(nèi)容 /td /tr % if not then while not % tr td %=rs(gonggaoshijian)%/td td%=rs(gonggaoneirong)% /td /tr % wend else end if % 在代碼中,可以看到使用了 if not then 語句,若記錄集 RS 不為空時(shí),則顯示數(shù)據(jù)庫的內(nèi)容。 內(nèi)部消息管理子模塊的實(shí)現(xiàn)則分為插入和查詢兩個(gè)過程。查詢過程則是利用 session 函數(shù) 插入部分代碼入下: % 第 20 頁 共 26 頁 set con=() dsn=data。pwd= bumenming=request(bumenming) shouxinrenxingming=request(shouxinrenxingming) session(xingming) shijian=now( ) neirong=request(neirong) pa href=返回上頁 /a/p sql=insert into neibuxinxi (bumenming,xingming,shouxinrenxingming,shijian,neirong) values (39。bumenmingamp。,39。session(xingming)amp。,39。shouxinrenxingmingamp。,39。shijianamp。,39。neirongamp。) set rs=(sql) % 查詢部分代碼入下: % set con=() dsn=data。pwd= sql=select xingming ,shijian, neirong from neibuxinxi where shouxinrenxingming=39。session(xingming)amp。 set rs=(sql) % table width=75% border=1 tr td發(fā)信人 /td td時(shí)間 /td td內(nèi)容 /td/tr % if not then while not % trtd%=rs(xingming)% /tdtd%=rs(shijian)% /tdtd%=rs(neirong)% /tr % wend 第 21 頁 共 26 頁 else 無內(nèi)容 end if % 管理員端消息管理模塊 在管理員端 消息管理模塊 中 分為 員工 事務(wù)管理,公告消息管理兩個(gè)子模塊。 以查看請(qǐng)假申請(qǐng)為例。當(dāng)為 0 時(shí)用 a href=39?;?復(fù) /a 這段程序,將進(jìn)入回復(fù)頁面,進(jìn)行回復(fù)。當(dāng)為 1 時(shí)用 “已回復(fù) ”表示。 任務(wù)模塊與其相似。輸入密碼是為了保護(hù)個(gè)人信息不被泄露,當(dāng)輸入后,及驗(yàn)證輸入的信息的正確性,當(dāng)成功后即可查看到對(duì)應(yīng)的薪酬信息。uid=sa。amp。39。amp。39。amp。39。amp。39。在新建薪酬管理中,管理員進(jìn)入新建薪酬管理首頁頁面,先輸入對(duì)應(yīng)員工的信息,提 第 23 頁 共 26 頁 交到 gerenxinxi 表進(jìn)行驗(yàn)證,當(dāng)通過是進(jìn)入薪酬管理主頁面,可對(duì)員工的薪酬進(jìn)行分配。 圖 59 查看已 發(fā)布的薪酬 6 系統(tǒng)測(cè)試 軟件測(cè)試是為了發(fā)現(xiàn)錯(cuò)誤而執(zhí)行程序的過程。 計(jì)算機(jī)的操作系統(tǒng)為 Window 2020 Server,并配置 IIS 使其成為一臺(tái) WEB服務(wù)器。 Windows 2020 Server 內(nèi)嵌了強(qiáng)大的構(gòu)建 Web 服務(wù)的技術(shù)及安全手段,如 IIS 及安全的 Exchange Server, SSL 服務(wù)器及 IPSEC 應(yīng)用等,提供了構(gòu)建 Web 平臺(tái)的整套解決方案。在計(jì)算機(jī)輸入有效的用戶名和 密碼,登陸進(jìn)入系統(tǒng)主界面分別對(duì)各個(gè)模塊進(jìn)行測(cè)試 。測(cè)試系統(tǒng)的安全性,包括 數(shù)據(jù)的安全性和操作的安全性 。系統(tǒng)數(shù)據(jù)和操作的安全性良好。 第 24 頁 共 26 頁 結(jié) 論 通過 3 個(gè)多月的開發(fā),企業(yè)員工管理系統(tǒng)開發(fā)完成,其基本功能符合用戶需求。整個(gè)開發(fā)過程嚴(yán)格遵循軟件工程的開發(fā)方法。 由于時(shí)間和個(gè)人水平有限,該系統(tǒng)功能還有一些有待完善,頁面設(shè)計(jì)也不夠美觀等。 [2] 方睿 ,刁仁宏 ,吳四九 .網(wǎng)絡(luò)數(shù)據(jù)庫原理及應(yīng)用 [M].成都 :四川大學(xué)出版社 ,2020。 [5] 求是科技 .ASP數(shù)據(jù)庫管理系統(tǒng)開發(fā)實(shí)例導(dǎo)航 [M].北京 :人民郵電出版社 ,2020。 [7] 王強(qiáng) .Server 2020 經(jīng)典范例 50講 [M].北京 :科技出版社 ,2020。在此向他表示我最衷心的感謝! 在論文完成過程中,本人還得到了老師和同學(xué)的熱心幫助,本人向他們表示深深的謝意! 最后向在百忙之中評(píng)審本文的各位專家、老師表示衷心的感謝! 作者簡(jiǎn)介: 姓 名:黃賈成 性別: 男 出生年月: 1984 年 1 月 18 日 民族: 漢 Email: 第 26 頁 共 26 頁 聲 明 本論文的工作是 2020年 2 月至 2020 年 6月在成都信息工程學(xué)院網(wǎng)絡(luò)工程系完成的。除非另有說明,本文的工作是原始性工作。 ( 2)學(xué)??梢圆捎糜坝?、縮印或其他復(fù)制方式保存學(xué)位論文。 ( 4)學(xué)??稍试S學(xué)位論文被查閱或借閱。 除非另有科研合同和其他法律文書的制約,本論文的科研成果屬于成都信息工程學(xué)院。 and the herald shall proclaim in the agora theoffence for which he is going to be beaten. The warden of the agoraand the guardians of the law shall obtain information from experiencedpersons about the rogueries and adul terations of the sellers, andshall write up what the seller ought and ought not to do in each case。 for is not he a benefactor who reduces the inequalitiesand inmensurabilities of goods to equality and mon measure?And this is what the power of money acplishes, and the merchant maybe said to be appointed for this purpose. The hireling and thetavernkeeper, and many other occupations, some of them more andothers less seemly alike have this object。 wherefore all that relates to retail trade, andmerchandise, and the keeping of taverns, is denounced and numberedamong dishonourable things. For if what I trust may never be andwill not be, we were to pel, if I may venture to say a ridiculousthing, the best men everywhere to keep taverns for a time, or carry onretail trade, or do anything of that sort。 and if all such occupations were managed onincorrupt principles, they would be honoured as we honour a motheror a nurse. But now that a man goes to desert places and builds bouseswhich can only be reached be long journeys, for the sa ke of retailtrade, and receives strangers who are in need at the welerestingplace, and gives them peace and calm when they are tossed bythe storm, or cool shade in the heat
點(diǎn)擊復(fù)制文檔內(nèi)容
公司管理相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1