内容介绍
原文档由会员 莎士比亚 发布
论文标准WORD格式排版 50页 9606字
摘要:
本文从用计算机实现工资管理的角度出发,系统地介绍了为某所大学设计的一套网络环境的工资软件。本文详细叙述了系统的功能、数据结构、概要设计、详细设计。系统实现了职工信息、工资的录入、查询和修改,用户可定制报表,用户管理等功能。系统的特点是采用B/S架构,整个系统的管理工作都集中在服务器端,运用多层软件架构确保了系统的扩展性和适用性。服务器端主要运用servlets实现,客户端主要使用jsp实现。
关键字:
工资管理系统,oracle的java存储过程,工资计算模块
Abstract
This treatise bases on the managing of wage by computer and generally introduces a kind of wage managing software about internet environment for a certain university. It discusses the functions of the system, data structure, summary designing and particular designing in detials. The system implements the insert query of the employee's information and wage, the reports ,user management and so on. The specialty of the system is using B/S structure. The management of the system focus on the server. It uses several layers software structure to insure the applicability and the expansibility of the system. The server is mostly using servlets and, the client is jsp.
Key Words:
The management system of wage, the java stored procedure of oracle,the module of wage calculoation
目 录
第一章 绪论 1
1.1 背景 1
1.2 开发工具和运行环境的选择 1
1.3 本文所做的工作 2
第二章 需求分析 3
2.1 用户功能的需求分析 3
2.2 功能划分 4
2.3 数据描述 5
2.4 数据采集 9
2.5 数据库设计 10
第三章 概要设计 14
3.1总体设计 14
3.1.1基本概念设计 14
3.1.2开发环境 14
3.1.3软件结构 15
3.2数据结构设计 17
3.2.1全局变量定义 17
3.2.2物理结构设计 17
第四章 详细设计 19
4.1 登陆窗口设计 19
4.1.1 功能说明 19
4.1.2 实现方法 19
4.2 主界面 20
4.2.1 功能说明 20
4.2.2 实现方法 20
4.3职工信息录入 20
4.3.1 功能说明 21
4.3.2 实现方法 21
4.4 职工信息的查询和修改 21
4.4.1 功能说明 22
4.4.2 实现方法 22
4.5 课时工资信息的录入 22
4.5.1 功能说明 22
4.5.2 实现方法 22
4.6 课时和工资信息的查询和修改 23
4.6.1 实现方法 23
4.7 工资结构的查看 23
4.8工资结构的调整 24
4.9 报表生成 24
4.9.1 实现方法 25
4.10 过滤器和监听器 25
4.10.1 是否登陆过滤器 25
4.10.2 编码过滤器 25
4.10.3 用户监听器 25
第五章 毕业设计小结 26
5.1目标完成情况和不足 26
5.2总结和体会 27
致谢 28
参考文献 29
附录 30
附录一 工资的计算公式 30
附录二 数据库表的结构 30
附录三 源代码 33
1. oracle的java存储过程(工资计算模块) 33
2. 监听器(日志生成) 35
3.过滤器 38