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

正文內(nèi)容

javaee企業(yè)人事管理系統(tǒng)(已修改)

2025-04-19 06:03 本頁面
 

【正文】 2011—2012學(xué)年第二學(xué)期《Java EE技術(shù)及應(yīng)用》課程大作業(yè)設(shè)計(jì)題目:企業(yè)人事管理系統(tǒng) 專業(yè):_計(jì)算機(jī)軟件班級:09級 計(jì)算機(jī)一班學(xué)號: 090400421《Java EE技術(shù)及應(yīng)用》評價(jià)標(biāo)準(zhǔn)項(xiàng)目內(nèi)容單項(xiàng)分值標(biāo)準(zhǔn)分值軟件分析設(shè)計(jì)(1)題目明確、分析合理,有用例圖530(2)功能結(jié)構(gòu)分析準(zhǔn)確,有結(jié)構(gòu)圖5(3)數(shù)據(jù)結(jié)構(gòu)設(shè)計(jì)合理,有ER圖,Sql腳本正確5(4)系統(tǒng)架構(gòu)清晰,有相關(guān)說明5(5)開發(fā)環(huán)境和運(yùn)行環(huán)境明確5(6)文檔格式規(guī)范5軟件實(shí)現(xiàn)(7)功能較完整、能正確運(yùn)行520(8)界面設(shè)計(jì)合理、易用、協(xié)調(diào)5(9)代碼規(guī)范(命名、注釋、格式)5(10)程序有一定難度(至少包含四個(gè)以上數(shù)據(jù)表)5總體效果(11)項(xiàng)目完成總體質(zhì)量510(12)軟件功能及技術(shù)水平5答辯(13)講解清楚明了510(14)功能演示流暢5評語得分 企業(yè)人事管理系統(tǒng)系統(tǒng)分析 在企業(yè)中,人事管理工作是非常重要的一項(xiàng)工作,它負(fù)責(zé)整個(gè)企業(yè)的日常人事安排,人員的人事管理等。高效的人事管理可以提高企業(yè)的市場競爭力,使企業(yè)具有更強(qiáng)的凝聚力和活力。人事部門的工作一般都是日常性的而且是比較繁雜的,大量重復(fù)性工作很容易導(dǎo)致員工工作沒有新鮮感。使用人事管理系統(tǒng)可以讓繁雜的工作電子化管理,提高人事部門員工的工作效率??傮w設(shè)計(jì)1 功能模塊設(shè)計(jì)企業(yè)人事管理系統(tǒng)站點(diǎn)首頁員工信息員工管理用戶管理用戶登錄 用戶注冊2 數(shù)據(jù)庫設(shè)計(jì)create database person。use person。create table news_category( cat_id int auto_increment primary key, cat_title varchar(50) not null)。create table news_user( user_id int auto_increment primary key, user_name varchar(50) not null, user_pwd varchar(50) not null, user_right int default 1, user_pic blob)。create table news_content( cont_id int auto_increment primary key, cat_id int not null references news_category(cat_id), cont_title varchar(200) not null, cont_content text not null, cont_pic varchar(200), cont_datetime timestamp)。3 系統(tǒng)架構(gòu)設(shè)計(jì)表示層業(yè)務(wù)邏輯層數(shù)據(jù)操作層數(shù)據(jù)庫4 包和文件夾劃分5 系統(tǒng)文件結(jié)構(gòu)NetbeansJavaEE MySQL實(shí)體類設(shè)計(jì)Action /* * To change this template, choose Tools | Templates * and open the template in the editor. */package 。/** * * @author Administrator */import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。public class CheckAction { private ICheckService CheckService = ()。 private final int PAGE_SIZE = 3。 private Check Check。 private Integer checkId。 private PageListCheck plist。 private String message。 private Integer pageNo。 public String add() throws Exception { if ((Check) 0) { message = 添加成功!a href=39。/person/39。返回/a。 } else { message = 添加失敗!a href=\JavaScript:()\返回/a。 } return msg。 } public String edit() throws Exception { if ((Check) 0) { message = 修改成功!a href=39。/person/39。返回/a。 } else { message = 修改失敗!a href=\JavaScript:()\返回/a。 } return msg。 } public String willedit() throws Exception { Check=(checkId)。 return edit。 } public String manage() throws Exception { if(pageNo==null)pageNo=1。 ListCheck list = (PAGE_SIZE, pageNo)。 int count = ()。 plist = new PageListCheck(list, count, PAGE_SIZE, pageNo, /person/)。 return manage。 } public String delet() throws Exception { if ((checkId) 0) { message = 刪除成功!a href=39。/person/39。返回/a。 } else { message = 刪除失敗!a href=\JavaScript:()\返回/a。 } return msg。 } public Integer getCheckId() { return checkId。 } public void setCheckId(Integer checkId) { = checkId。 } public Check getCheck() { return Check。 } public void setCheck(Check Check) { = Check。 } public String getMessage() { return message。 } public void setMessage(String message) { = message。 } public Integer getPageNo() { return pageNo。 } public void setPageNo(Integer pageNo) { = pageNo。 } public PageListCheck getPlist() { return plist。 } public void setPlist(PageListCheck plist) { = plist。 } }/* * To change this template, choose Tools | Templates * and open the template in the editor. */package 。/** * * @author Administrator */import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。import 。/** * * @author Administrator */public class InfoAction { private IInfoService InfoService = ()。 private final Integer PAGE_SIZE = 3。 private File upfile。 private String upfileFileName。 private Info Info。 private PageListInfo plist。 private Integer checkId。 private String infoName。 private Integer infoId。 private Integer pageNo。 private String message。 public String manage() throws Exception { if (pageNo == null) { pageNo = 1。 } if (infoName == null) { infoName = 。 } ListInfo list = (checkId, infoName, PAGE_SIZE, pageNo)。 int count = (infoName)。 plist = new PageListInfo(list, count, PAGE_SIZE, pageNo, /person/InfoAction!)。 return manage。 } public String browse() throws Exception { if (pageNo == null) { pageNo = 1。 } if (infoName == null) { infoName = 。 } ListInfo list = (checkId, infoName, PAGE_SIZE, pageNo)。 int count = (infoName)。 plist = new PageListInfo(list, count, PAGE_SIZE, pageNo, /person/InfoAction!)。 return browse。 } public String add() throws Exception { (upfile==null)。 String newFilename = new Date().getTime() + getExt(upfileFileName)。 String path = ().getRealPath(/upfiles)。 File file = new File(path + \\ + newFilename)。 if(upfile!=null){ copy(upfile, file)。 (newFilename)。 } if ((Info) 0) { message = 添加成功!a
點(diǎn)擊復(fù)制文檔內(nèi)容
公司管理相關(guān)推薦
文庫吧 www.dybbs8.com
公安備案圖鄂ICP備17016276號-1