資源簡(jiǎn)介
本系統(tǒng)主要是針對(duì)敬老院工作人員即管理員和員工設(shè)計(jì)的。敬老院管理系統(tǒng)
將IT技術(shù)為養(yǎng)老院提供一個(gè)接口便于管理信息,存儲(chǔ)老人個(gè)人信息和其他信息,查找
和更新信息的養(yǎng)老院檔案,節(jié)省了員工的勞動(dòng)時(shí)間,大大降低了成本。
其主要功能包括:
系統(tǒng)管理員用戶(hù)功能介紹:
用戶(hù)管理員、員工登錄、老人信息管理、床位分配管理、護(hù)工薪資管理、
護(hù)工請(qǐng)假記錄、老人請(qǐng)假記錄、入住費(fèi)用和事故記錄管理。以及對(duì)這些功能的增、刪、改、查處理
普通管理員用戶(hù) (護(hù)工身份)功能介紹:
密碼信息管理用例分析, 老人信息查看用例分析, 請(qǐng)假信息查看用例分析,
護(hù)工薪資查看用例分析
將IT技術(shù)為養(yǎng)老院提供一個(gè)接口便于管理信息,存儲(chǔ)老人個(gè)人信息和其他信息,查找
和更新信息的養(yǎng)老院檔案,節(jié)省了員工的勞動(dòng)時(shí)間,大大降低了成本。
其主要功能包括:
系統(tǒng)管理員用戶(hù)功能介紹:
用戶(hù)管理員、員工登錄、老人信息管理、床位分配管理、護(hù)工薪資管理、
護(hù)工請(qǐng)假記錄、老人請(qǐng)假記錄、入住費(fèi)用和事故記錄管理。以及對(duì)這些功能的增、刪、改、查處理
普通管理員用戶(hù) (護(hù)工身份)功能介紹:
密碼信息管理用例分析, 老人信息查看用例分析, 請(qǐng)假信息查看用例分析,
護(hù)工薪資查看用例分析

代碼片段和文件信息
package?com.action;
/**
?*?管理員登陸?增加?修改?刪除??
?*/
import?java.io.IOException;
import?java.text.SimpleDateFormat;
import?java.util.Calendar;
import?java.util.List;
import?java.util.StringTokenizer;
import?javax.servlet.ServletException;
import?javax.servlet.http.HttpServlet;
import?javax.servlet.http.HttpServletRequest;
import?javax.servlet.http.HttpServletResponse;
import?javax.servlet.http.HttpSession;
import?com.bean.ComBean;?
import?com.util.Constant;
import?com.util.MD5;
public?class?AdminServlet?extends?HttpServlet?{
/**
?*?Constructor?of?the?object.
?*/
public?AdminServlet()?{
super();
}
/**
?*?Destruction?of?the?servlet.?
?*/
public?void?destroy()?{
super.destroy();?//?Just?puts?“destroy“?string?in?log
//?Put?your?code?here
}
/**
?*?The?doGet?method?of?the?servlet.?
?*
?*?This?method?is?called?when?a?form?has?its?tag?value?method?equals?to?get.
?*?
?*?@param?request?the?request?send?by?the?client?to?the?server
?*?@param?response?the?response?send?by?the?server?to?the?client
?*?@throws?ServletException?if?an?error?occurred
?*?@throws?IOException?if?an?error?occurred
?*/
public?void?doGet(HttpServletRequest?request?HttpServletResponse?response)
throws?ServletException?IOException?{
doPost(requestresponse);
}
/**
?*?The?doPost?method?of?the?servlet.?
?*
?*?This?method?is?called?when?a?form?has?its?tag?value?method?equals?to?post.
?*?
?*?@param?request?the?request?send?by?the?client?to?the?server
?*?@param?response?the?response?send?by?the?server?to?the?client
?*?@throws?ServletException?if?an?error?occurred
?*?@throws?IOException?if?an?error?occurred
?*/
public?void?doPost(HttpServletRequest?request?HttpServletResponse?response)
throws?ServletException?IOException?{
response.setContentType(Constant.CONTENTTYPE);
request.setCharacterEncoding(Constant.CHARACTERENCODING);
String?date=new?SimpleDateFormat(“yyyy-MM-dd?HH:mm:ss“).format(Calendar.getInstance().getTime());
String?date2=new?SimpleDateFormat(“yyyy-MM-dd“).format(Calendar.getInstance().getTime());
try{
String?method=request.getParameter(“method“).trim();
ComBean?cBean?=?new?ComBean();
HttpSession?session?=?request.getSession();???
if(method.equals(“one“)){//用戶(hù)登錄
String?username?=?request.getParameter(“username“);
String?password?=?request.getParameter(“password“);??
String?sf?=?request.getParameter(“sf“);??
String?sql=“select?realname?from?admin?where?username=‘“+username+“‘?and??password=‘“+password+“‘??and??sf=‘“+sf+“‘?“;
String?str=cBean.getString(sql);
if(str==null){
request.setAttribute(“message“?“登錄信息錯(cuò)誤!“);
request.getRequestDispatcher(“index.jsp“).forward(request?response);?
}
else{
session.setAttribute(“user“?username);?
session.setAttribute(“sf“?sf);?
request.getRequestDispatcher(“admin/index.jsp“).forward(request?response);?
}??
}
?屬性????????????大小?????日期????時(shí)間???名稱(chēng)
-----------?---------??----------?-----??----
?????文件??????67552??2018-11-07?18:36??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\02截圖\截圖\01-敬老院系統(tǒng)設(shè)計(jì).jpg
?????文件??????63224??2018-11-07?18:36??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\02截圖\截圖\02-登錄頁(yè)面.jpg
?????文件?????150502??2018-11-07?18:36??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\02截圖\截圖\03-系統(tǒng)管理員主菜單頁(yè)面.png
?????文件?????137685??2018-11-07?18:36??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\02截圖\截圖\04-普通管理員主菜單頁(yè)面.png
?????文件????????548??2018-11-07?18:36??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\03論文\論文\00--(讀者必看)基于Java的敬老院管理系統(tǒng).txt
?????文件?????311470??2018-11-07?18:36??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\03論文\論文\01-敬老院管理系統(tǒng)部署演示.docx
?????文件????????100??2018-11-07?18:36??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\03論文\論文\readme.txt
?????文件????3094371??2018-11-07?18:36??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\03論文\論文\基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)畢業(yè)設(shè)計(jì)論文.doc
?????文件??????24576??2018-11-07?18:36??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\03論文\論文\基于Java的敬老院管理系統(tǒng)的運(yùn)營(yíng)和實(shí)現(xiàn)畢業(yè)設(shè)計(jì)中期檢查表.doc
?????文件????1988096??2018-11-07?18:36??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\03論文\論文\基于java的敬老院運(yùn)營(yíng)管理系統(tǒng)的設(shè)計(jì)與實(shí)現(xiàn)畢業(yè)答辯PPT.ppt
?????文件??????18295??2018-11-07?18:36??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\03論文\論文\基于java的敬老院運(yùn)營(yíng)管理系統(tǒng)的設(shè)計(jì)與實(shí)現(xiàn)畢業(yè)設(shè)計(jì)任務(wù)書(shū).docx
?????文件???????5082??2018-11-07?18:36??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\04數(shù)據(jù)庫(kù)\數(shù)據(jù)庫(kù)\db.sql
?????文件???????1745??2018-11-07?18:37??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\.classpath
?????文件????????306??2018-11-07?18:37??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\.myme
?????文件???????1754??2018-11-07?18:37??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\.project
?????文件????????500??2018-11-07?18:37??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\.settings\.jsdtscope
?????文件????????382??2018-11-07?18:37??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\.settings\com.genuitec.eclipse.migration.prefs
?????文件????????364??2018-11-07?18:37??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\.settings\org.eclipse.jdt.core.prefs
?????文件????????559??2018-11-07?18:37??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\.settings\org.eclipse.wst.common.component
?????文件????????412??2018-11-07?18:37??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\.settings\org.eclipse.wst.common.project.facet.core.xm
?????文件?????????49??2018-11-07?18:37??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件??????????6??2018-11-07?18:37??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\.settings\org.eclipse.wst.jsdt.ui.superType.name
?????文件???????7444??2018-11-07?18:40??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\src\com\action\AdminServlet.java
?????文件??????15839??2018-11-07?18:40??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\src\com\action\ComServlet.java
?????文件???????4310??2018-11-07?18:40??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\src\com\bean\ComBean.java
?????文件????????318??2018-11-07?18:40??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\src\com\util\CheckCode.java
?????文件???????1838??2018-11-07?18:40??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\src\com\util\Common.java
?????文件????????533??2018-11-07?18:40??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\src\com\util\Constant.java
?????文件???????2447??2018-11-07?18:40??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\src\com\util\DBO.java
?????文件????????650??2018-11-07?18:40??基于Java的敬老院管理系統(tǒng)的設(shè)計(jì)和實(shí)現(xiàn)\05源代碼\源代碼\yanglaoyuan\src\com\util\Filter.java
............此處省略202個(gè)文件信息
評(píng)論
共有 條評(píng)論