登录

  • 登录
  • 忘记密码?点击找回

注册

  • 获取手机验证码 60
  • 注册

找回密码

  • 获取手机验证码60
  • 找回
毕业论文网 > 毕业论文 > 计算机类 > 物联网工程 > 正文

工地安全质量检查APP(Android)应用软件开发毕业论文

 2021-11-11 08:11  

论文总字数:22244字

摘 要

随着计算机技术的不断发展,将工地安全管理提至线上管理是实现安全施工的必不可少的一环,有利于精细化管理、减少轻伤事故以及杜绝发生重大事故。

在施工过程中,通过安全检查和质量管理可以发现一些现存的影响施工进度甚至是各施工人员安危的安全隐患问题,在施工现场应该始终秉持着安全至上的原则,倘若这些问题没有能够及时得到解决或者是被无意间忽略了,后果将会是不可想象的。为了改善这一情况,设计与实现工地安全质量检查软件,由管理人员与检查人员共同合作,将安全管理应用到施工的各个环节当中,明确每一个施工作业人员在安全生产方面的职责,有效地提高了施工人员的安全意识。

本文主要介绍了在安卓平台上实现安全检查与质量管理软件的设计方案,使用SQLite数据库实现数据的存取。该软件共分为五个功能:个人信息功能、安全管理功能、质量管理功能、复核功能、个人任务功能,主要完成的工作有:

(1)个人信息功能。实现了将个人详细信息的查看、添加、修改、删除操作,内容除了账号和密码,还有姓名、公司、工程编号、部门、用户身份。用户身份分为管理人员和检查人员,对检查人员分属不同的部门,由工程编号分类不同的工程信息,每个用户还可以根据自己的喜好修改头像。

(2)安全管理功能。主要针对工地中发现的安全隐患问题,实现了对安全隐患问题的添加、分配、修改、删除、查看操作。管理人员可以添加、分配、修改、删除、查看安全隐患问题;检查人员可以添加、修改、查看安全隐患问题,只有指定的检察人员才可以改变安全隐患问题的整改状态。

(3)质量管理功能。主要针对施工过程中必须检查的内容,实现了质量检查问题的添加、分配、修改、删除、查看操作。管理人员可以添加、分配、修改、删除、查看质量检查问题;检查人员可以查看质量检查问题,只有指定的检查人员才可以改变质量检查问题的检查状态。

(4)复核功能。检查组现场负责人将施工现场的各个问题展示给各施工单位负责人后,施工单位负责人需要在软件上输入姓名和邮箱地址。管理人员可以添加、查看,检查人员只可以查看。

(5)个人任务功能。只针对检查人员的功能,检查人员可以查看、修改被分配到的安全隐患问题和质量检查问题。

关键词:安全检查;质量管理;工地安全;安卓;SQLite

Abstract

With the continuous development of computer technology, bringing construction site safety management to online management is an indispensable part of achieving safe construction, which is conducive to refined management, reducing minor accidents and preventing major accidents.

During the construction process, through safety inspection and quality management, you can find some existing hidden safety problems that affect the construction schedule and even the safety of the construction personnel. You should always adhere to the principle of safety first at the construction site. If these problems are not resolved in time Or if it is accidentally ignored, the consequences will be unimaginable. In order to improve this situation, design and implement site safety and quality inspection software. The management and inspection staff work together to apply safety management to all aspects of construction, clarify the responsibilities of each construction operator in production safety, The construction personnel's site safety awareness and self-protection awareness were improved to ensure that the project achieved the goal of safe production.

This paper mainly introduces the design scheme of implementing safety inspection and quality management software on the Android platform, and uses SQLite database to achieve software data access. The software is divided into five functions: personal information function, security management function, quality management function, review function, personal task function, the main tasks completed are:

(1) Personal information function. Realize the operation of viewing, adding, modifying, and deleting personal details. In addition to the account number and password, the content also includes the name, company, project number, department, and user identity. User identities are divided into managers and inspectors. The inspectors belong to different departments, and different project information is classified by project number. Each user can also modify the avatar according to their own preferences.

(2) Security management function. Mainly aiming at the hidden safety problems found in the construction site, the operations of adding, assigning, modifying, deleting and viewing the hidden safety problems are realized. Managers can add, assign, modify, delete, and view safety hazards; inspectors can add, modify, and view safety hazards. Only designated inspectors can change the rectification status of safety hazards.

(3) Quality management function. Mainly aimed at the content that must be checked during the construction process, the operation of adding, assigning, modifying, deleting and viewing quality inspection problems was realized. Management personnel can add, assign, modify, delete, and view quality inspection problems; inspection personnel can view quality inspection problems, and only designated inspection personnel can change the inspection status of quality inspection problems.

(4) Review function. The site leader of the inspection team will show the various problems on the construction site to the heads of the construction units. The head of the construction unit needs to enter the name and email address on the software. Managers can add and view, and inspectors can only view.

(5) Personal task function. Only for the functions of the inspectors, the inspectors can view and modify the assigned safety problems and quality inspection problems.

Keywords: safety inspection; quality management; site safety; Android; SQLite

目 录

第1章 绪论 1

1.1 研究背景与意义 1

1.2 国内外研究现状 2

1.2.1 国内研究现状 2

1.2.2 国外研究现状 3

1.3 设计内容 3

1.4 论文章节安排 4

第2章 需求分析 5

2.1 软件概述 5

2.2 业务流程分析 5

2.3 功能需求分析 6

2.4 可行性分析 8

第3章 系统总体设计 9

3.1 结构设计 9

3.2 功能设计 9

3.2.1 个人信息查看功能 9

3.2.2 安全隐患数据管理功能 9

3.2.3 质量检查数据管理功能 10

3.2.4 复核信息管理功能 10

3.2.5 个人任务管理功能 10

第4章 系统详细设计 11

4.1 软件界面设计 11

4.1.1 功能主界面设计 11

4.1.2 个人信息界面设计 11

4.1.3 安全隐患数据管理界面设计 12

4.1.4 质量检查数据管理界面设计 13

4.1.5 复核信息管理界面设计 14

4.1.6 个人任务管理界面设计 15

4.2 数据库设计 15

4.3功能模块设计 17

4.3.1 个人信息功能设计 17

4.3.2 安全隐患数据管理功能设计 17

4.3.3 质量检查数据管理功能设计 18

4.3.4 复核信息管理功能设计 18

4.3.4 个人任务管理功能设计 18

第5章 关键技术与系统实现 20

5.1 安全隐患数据管理功能实现 20

5.1.1 编辑数据图片的实现 20

5.1.2 侧滑菜单的实现 20

5.2 质量检查数据的分组列表展示的实现 20

5.3 个人任务列表展示的实现 21

第6章 系统测试和运行结果 22

6.1 安全隐患数据管理功能测试 22

6.2 质量检查数据管理功能测试 23

6.3 复核信息管理功能测试 24

6.4 个人任务管理测试 25

6.5 安全隐患数据管理功能运行结果 26

6.6 质量检查管理功能运行结果 27

6.7 复核信息管理功能运行结果 28

请支付后下载全文,论文总字数:22244字

您需要先支付 80元 才能查看全部内容!立即支付

企业微信

Copyright © 2010-2022 毕业论文网 站点地图