xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

  • 大小: 3.16MB
    文件類型: .rar
    金幣: 2
    下載: 0 次
    發(fā)布日期: 2023-09-10
  • 語言: Java
  • 標簽: 畢業(yè)論文??

資源簡介

隨著經(jīng)濟全球化、管理現(xiàn)代化的到來,信息化建設已提到議事日程。國家機關、高等院校、參與國際競爭的大企業(yè)等企事業(yè)單位為了提高現(xiàn)代化管理水平、為了在激烈的市場競爭中獲勝,紛紛不同程度地加強信息化建設,如組建自己的局域網(wǎng)、實施適用本單位或本部門的企業(yè)級MIS(管理信息系統(tǒng))項目或ERP(企業(yè)資源計劃)項目,通過Internet向外發(fā)布信息等。因此,如何將計算機技術和網(wǎng)絡技術運用于企業(yè)管理,形成基于Web的辦公自動化系統(tǒng)(Office Automation System,簡稱OAS),成為我們重要的開發(fā)項目之一。 基于此,本文研究的就是利用Sun公司推出的比較優(yōu)秀的Web服務器端應用程序開發(fā)技術JSP設計和STRUTS架構以及東軟公司開發(fā)的通用企業(yè)開發(fā)平臺UniEAP架構與實現(xiàn)的日程安排管理系統(tǒng)(Scheduler Managements System,簡稱SMS)。本文首先對辦公自動化系統(tǒng)和日程安排管理系統(tǒng)進行了詳盡的闡述,充分的展示了日程安排對企業(yè)的重要性,并在詳細的需求調研后對日程安排管理系統(tǒng)進行分析,設計了此系統(tǒng)的整體結構和功能模塊,即日程安排管理系統(tǒng)分成了個人設置模塊、日程查詢模塊、個人日程模塊和他人日程四大功能模塊,在各模塊下又下設了詳細功能子模塊,并進行了數(shù)據(jù)庫設計與連接。接下來,本文又詳細介紹了基于Web的日程安排管理系統(tǒng)的最終實現(xiàn)方法。 關鍵詞 辦公自動化,JSP,STRUTS,UniEAP,日程安排管理系統(tǒng) Country Resource of Office Automatization System Abstract Under global economy and modern administration’s requirement, the information processing is becoming more and more important. In order to improve their ability of administration and to catch the step of market, many Governments, enterprises and Educational gradually realize the significance of the information processing and begin to upgrade it. For example, to organize their own Local area network, or to perform MIS (Management Information System) or ERP (Enterprises Recourse Platform), witch according to their actual condition. How to use computer and Internet in enterprise management, enterprise alliance and distributed departments, building enterprise OAS (Office Automation System) based on web, it becomes our research direction. So, the author will use the technology base on Web available of JSP which produced by Sun design and STRUTS impracticable and UniEAP of neusoft implementation of the SMS (Scheduler Managements System). In this article, OAS and SMS are explicated detailed, Human resource managements are so important that it can decide a corporation’s fortune. The author divides the scheduler managements system into four parts: the deal with setting of person operations, the synthesis of query, the schedule of person and the schedule of other person awarding on which four parts data-b

資源截圖

代碼片段和文件信息

package?com.neusoft.coa.calendarplan.action;

import?javax.servlet.http.HttpServletRequest;
import?javax.servlet.http.HttpServletResponse;

import?org.apache.commons.collections.SequencedHashMap;
import?org.apache.struts.action.ActionForm;
import?org.apache.struts.action.ActionForward;
import?org.apache.struts.action.ActionMapping;

import?com.neusoft.businessconsole.tools.Globals;
import?com.neusoft.coa.calendarplan.interaction.CalendarPlanInteractionImpl;
import?com.neusoft.coa.common.base.action.COAbaseAction;
import?com.neusoft.coa.common.util.COARequestEnvelope;
import?com.neusoft.coa.common.util.COAResponseEnvelope;
import?com.neusoft.coa.misc.COAEcsConfig;
import?com.neusoft.coa.misc.COAKey;
import?com.neusoft.unieap.service.exception.GlobalErrorCode;
import?com.neusoft.unieap.util.RequestUtil;
import?com.neusoft.unieap.util.ResponseUtil;
import?com.neusoft.unieap.util.datastore.DataStore;

/**
?*?@author?何盼?he.p@neusoft.com
?*?@version?1.0.0?處理日程安排部分的增加,個人設置的創(chuàng)建、保存,共享人員的增加。
?*/

public?class?CalendarPlanAction?extends?COAbaseAction?{

????/**
?????*?
?????*?Description:TODO?打開日程查詢頁面
?????*?@param?mapping
?????*?@param?form
?????*?@param?request
?????*?@param?respons
?????*?@return
?????*?@throws?Exception
?????*/
????public?ActionForward?calbook(ActionMapping?mappingActionForm?formHttpServletRequest?request
????????????HttpServletResponse?respons?)?throws?Exception{
????????return?mapping.findForward(“success“);
????}
????/**
?????*?
?????*?Description:TODO?打開日程增加頁面
?????*?@param?mapping
?????*?@param?form
?????*?@param?request
?????*?@param?respons
?????*?@return
?????*?@throws?Exception
?????*/
????public?ActionForward?addbook(ActionMapping?mappingActionForm?formHttpServletRequest?request
????????????HttpServletResponse?respons?)?throws?Exception{
????????String?personID?=?(String)request.getParameter(“personID“);

????????request.getSession(true).setAttribute(“CAL_PERSOND_ID“personID);
????????return?mapping.findForward(“addbook“);
????}
????/**
?????*?
?????*?Description:TODO?打開編輯日程頁面
?????*?@param?mapping
?????*?@param?form
?????*?@param?request
?????*?@param?respons
?????*?@return
?????*?@throws?Exception
?????*/
????public?ActionForward?editbook(ActionMapping?mappingActionForm?formHttpServletRequest?request
????????????HttpServletResponse?respons?)?throws?Exception{
????????String?personID?=?(String)request.getParameter(“personID“);

????????request.getSession(true).setAttribute(“CAL_PERSOND_ID“personID);

????????return?mapping.findForward(“editbook“);
????}
????/**
?????*?增加日程
?????*/
????public?ActionForward?AddRecord(ActionMapping?mapping?ActionForm?form?HttpServletRequest?request
????????????HttpServletResponse?response)?throws?Exception?{

????????RequestUtil?requestUtil?=?new?RequestUtil(request);
????????ResponseUtil?responseUtil?=?new?ResponseUtil(response);

????????SequencedHashMap?dataStores?=?null;
????????//?獲取前臺數(shù)據(jù)窗體里的

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件??????83062??2006-05-08?21:43??張宇\3.doc

?????文件????1844736??2006-06-29?13:22??張宇\畢業(yè)論文\畢業(yè)論文.doc

?????目錄??????????0??2006-06-29?13:31??張宇\畢業(yè)論文

?????文件????1779188??2006-05-27?15:57??張宇\畢業(yè)論文.fbr

?????文件?????687104??2006-05-21?14:12??張宇\畢業(yè)論文.ppt

?????文件??????19627??2006-06-06?19:33??張宇\程序\config配置文件\coa-config.xml

?????目錄??????????0??2006-06-29?13:33??張宇\程序\config配置文件

?????文件??????18494??2006-05-11?17:36??張宇\程序\java文件\CalendarPlanAction.java

?????文件??????19143??2006-05-08?08:50??張宇\程序\java文件\CalendarPlanApplogic.java

?????文件??????23708??2006-05-11?17:04??張宇\程序\java文件\CalendarPlanInteractionImpl.java

?????文件???????6923??2006-04-26?12:18??張宇\程序\java文件\Datetime.java

?????文件???????1917??2006-04-22?10:44??張宇\程序\java文件\ICalendarPlanInteraction.java

?????目錄??????????0??2006-06-29?13:32??張宇\程序\java文件

?????文件???????7597??2006-06-08?13:19??張宇\程序\jsp文件\calbook.jsp

?????文件??????25822??2006-06-08?12:20??張宇\程序\jsp文件\calendar.jsp

?????文件???????7892??2006-06-08?13:31??張宇\程序\jsp文件\calendaradd.jsp

?????文件???????7033??2006-06-08?13:02??張宇\程序\jsp文件\calendaredit.jsp

?????文件???????4867??2006-06-08?12:23??張宇\程序\jsp文件\othermanselect.jsp

?????文件???????6495??2006-06-08?13:01??張宇\程序\jsp文件\personsetting.jsp

?????文件???????5385??2006-06-08?12:17??張宇\程序\jsp文件\planquery.jsp

?????文件????????907??2006-05-11?17:42??張宇\程序\jsp文件\twiceframe.jsp

?????目錄??????????0??2006-06-29?13:33??張宇\程序\jsp文件

?????目錄??????????0??2006-06-29?13:33??張宇\程序

?????文件??????70144??2006-06-29?13:30??張宇\英文翻譯\英文翻譯.doc

?????目錄??????????0??2006-06-29?13:32??張宇\英文翻譯

?????目錄??????????0??2006-06-29?13:40??張宇

-----------?---------??----------?-----??----

??????????????4620044????????????????????26


評論

共有 條評論

相關資源