当前位置: 首页 > news >正文

工厂车间|基于springBoot的工厂车间系统设计与实现(附项目源码+论文+数据库)

私信或留言即免费送开题报告和任务书(可指定任意题目)

目录

一、摘要

二、相关技术

三、系统设计

四、数据库设计 

五、核心代码 

六、论文参考 

七、源码获取


一、摘要

社会发展日新月异,用计算机应用实现数据管理功能已经算是很完善的了,但是随着移动互联网的到来,处理信息不再受制于地理位置的限制,处理信息及时高效,备受人们的喜爱。本次开发一套基于VUE的工厂车间管理系统,有管理员和人员两个角色。管理员功能有个人中心,人员管理,看板信息管理,设备信息管理,生产开立管理,生产工序管理,生产流程管理。注册的人员可以登录和查看管理员发布的所有信息。基于VUE的工厂车间管理系统服务端用Java开发,用Spring Boot框架开发的网站后台,数据库用到了MySQL数据库作为数据的存储。这样就让用户用着方便快捷,都通过同一个后台进行业务处理,而后台又可以根据并发量做好部署,用硬件和软件进行协作,满足于数据的交互式处理,让用户的数据存储更安全,得到数据更方便。

关键工厂车间管理系统;Spring Boot框架;Java;MySQL

二、相关技术

java、tomcat、mysql、spring、sprigBoot、mybatis、query、vue

三、系统设计

3.1 整体功能设计图

在管理员功能模块确定下来的基础上,对管理员各个功能进行设计,确定管理员功能的详细模块。绘制的管理员功能结构见下图。管理员功能有个人中心,用户管理,看板信息管理,设备信息管理,订单管理,系统管理。

3.2 功能具体细节设计 

(1)人员管理

管理员可以对人员信息进行添加,修改,删除,查询操作。

(2)看板信息管理 

管理员可以对看板信息信息进行添加,修改,删除,查询操作。

(3)设备信息管理

管理员可以对设备信息进行添加,修改,删除,查询操作。

(4)生产开立管理

管理员可以查看,修改,删除,查询生产开立信息。 

四、数据库设计 

(1)人员表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

addtime

Date

创建时间

3

zhanghao

String

账号

4

mima

String

密码

5

xingming

String

姓名

6

xingbie

String

性别

7

touxiang

String

头像

8

youxiang

String

邮箱

9

shouji

String

手机

10

renyuanleixing

String

人员类型

(2)生产工序表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

addtime

Date

创建时间

3

shengchanpici

String

生产批次

4

gongxumingcheng

String

工序名称

5

gongxubianhao

String

工序编号

6

shebeimingcheng

String

设备名称

7

picishuliang

Integer

批次数量

8

gongxuneirong

String

工序内容

9

chanpinmingcheng

String

产品名称

10

fabushijian

datetime

发布时间

(3) 生产开立表 

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

addtime

Date

创建时间

3

gongdanshuliang

Integer

工单数量

4

shengchanpici

String

生产批次

5

picishuliang

Integer

批次数量

6

picishuoming

String

批次说明

7

chanpinmingcheng

String

产品名称

8

fabushijian

datetime

发布时间

 (4)看板信息表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

addtime

Date

创建时间

3

kanbanmingcheng

String

看板名称

4

yulantu

String

预览图

5

wangyelianjie

String

网页链接

6

neirongshuoming

String

内容说明

(5)生产流程表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

addtime

Date

创建时间

3

shengchanpihao

String

生产批号

4

shengchanpici

String

生产批次

5

gongxumingcheng

String

工序名称

6

gongxubianhao

String

工序编号

7

shebeimingcheng

String

设备名称

8

picishuliang

Integer

批次数量

9

chanpinmingcheng

String

产品名称

10

shengchanzhuangtai

String

生产状态

更多图略...

五、核心代码 

package com.controller;import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Map;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Date;
import java.util.List;
import javax.servlet.http.HttpServletRequest;import com.utils.ValidatorUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.annotation.IgnoreAuth;import com.entity.ShebeixinxiEntity;
import com.entity.view.ShebeixinxiView;import com.service.ShebeixinxiService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;
import java.io.IOException;/*** 设备信息* 后端接口* @author * @email * @date 2022-03-19 15:00:26*/
@RestController
@RequestMapping("/shebeixinxi")
public class ShebeixinxiController {@Autowiredprivate ShebeixinxiService shebeixinxiService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params,ShebeixinxiEntity shebeixinxi,HttpServletRequest request){EntityWrapper<ShebeixinxiEntity> ew = new EntityWrapper<ShebeixinxiEntity>();PageUtils page = shebeixinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, shebeixinxi), params), params));return R.ok().put("data", page);}/*** 前端列表*/@IgnoreAuth@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params,ShebeixinxiEntity shebeixinxi, HttpServletRequest request){EntityWrapper<ShebeixinxiEntity> ew = new EntityWrapper<ShebeixinxiEntity>();PageUtils page = shebeixinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, shebeixinxi), params), params));return R.ok().put("data", page);}/*** 列表*/@RequestMapping("/lists")public R list( ShebeixinxiEntity shebeixinxi){EntityWrapper<ShebeixinxiEntity> ew = new EntityWrapper<ShebeixinxiEntity>();ew.allEq(MPUtil.allEQMapPre( shebeixinxi, "shebeixinxi")); return R.ok().put("data", shebeixinxiService.selectListView(ew));}/*** 查询*/@RequestMapping("/query")public R query(ShebeixinxiEntity shebeixinxi){EntityWrapper< ShebeixinxiEntity> ew = new EntityWrapper< ShebeixinxiEntity>();ew.allEq(MPUtil.allEQMapPre( shebeixinxi, "shebeixinxi")); ShebeixinxiView shebeixinxiView =  shebeixinxiService.selectView(ew);return R.ok("查询设备信息成功").put("data", shebeixinxiView);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id){ShebeixinxiEntity shebeixinxi = shebeixinxiService.selectById(id);return R.ok().put("data", shebeixinxi);}/*** 前端详情*/@IgnoreAuth@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id){ShebeixinxiEntity shebeixinxi = shebeixinxiService.selectById(id);return R.ok().put("data", shebeixinxi);}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody ShebeixinxiEntity shebeixinxi, HttpServletRequest request){shebeixinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(shebeixinxi);shebeixinxiService.insert(shebeixinxi);return R.ok();}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody ShebeixinxiEntity shebeixinxi, HttpServletRequest request){shebeixinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(shebeixinxi);shebeixinxiService.insert(shebeixinxi);return R.ok();}/*** 修改*/@RequestMapping("/update")public R update(@RequestBody ShebeixinxiEntity shebeixinxi, HttpServletRequest request){//ValidatorUtils.validateEntity(shebeixinxi);shebeixinxiService.updateById(shebeixinxi);//全部更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Long[] ids){shebeixinxiService.deleteBatchIds(Arrays.asList(ids));return R.ok();}/*** 提醒接口*/@RequestMapping("/remind/{columnName}/{type}")public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request, @PathVariable("type") String type,@RequestParam Map<String, Object> map) {map.put("column", columnName);map.put("type", type);if(type.equals("2")) {SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");Calendar c = Calendar.getInstance();Date remindStartDate = null;Date remindEndDate = null;if(map.get("remindstart")!=null) {Integer remindStart = Integer.parseInt(map.get("remindstart").toString());c.setTime(new Date()); c.add(Calendar.DAY_OF_MONTH,remindStart);remindStartDate = c.getTime();map.put("remindstart", sdf.format(remindStartDate));}if(map.get("remindend")!=null) {Integer remindEnd = Integer.parseInt(map.get("remindend").toString());c.setTime(new Date());c.add(Calendar.DAY_OF_MONTH,remindEnd);remindEndDate = c.getTime();map.put("remindend", sdf.format(remindEndDate));}}Wrapper<ShebeixinxiEntity> wrapper = new EntityWrapper<ShebeixinxiEntity>();if(map.get("remindstart")!=null) {wrapper.ge(columnName, map.get("remindstart"));}if(map.get("remindend")!=null) {wrapper.le(columnName, map.get("remindend"));}int count = shebeixinxiService.selectCount(wrapper);return R.ok().put("count", count);}}

六、论文参考 

七、源码获取

点赞、收藏、关注、评论啦。

联系即送开题报告和任务书,欢迎咨询


http://www.mrgr.cn/news/46445.html

相关文章:

  • EE213 Lab virtuoso final project SRAM designlayout
  • G1原理—8.如何优化G1中的YGC
  • CSS:定位
  • 嵌入式系统中的 OpenCV 与 OpenGLES 协同应用
  • 代码随想录 字符串 test1
  • 【pycharm发现找不到python打包工具,且无法下载】
  • 极客兔兔Gee-Cache Day6
  • 单片机(学习)2024.10.9
  • 《基于FreeRTOS的STM32超声波智能避障平衡小车,实现了小车的自平衡、超声波避障以及通过智能手机远程控制的功能》+源代码+文献资料+文档说明
  • 【AI知识点】泛化(Generalization)与过拟合(Overfitting)
  • 安全帽未佩戴预警系统 劳保防护用品穿戴监测系统 YOLO
  • RK3588S系统导出和烧入新板子
  • 服务器平均响应时间和数据包大小关系大吗?
  • 3.1 显示层技术演变
  • 自由学习记录(4)
  • level2高频tick数据获取以及策略分享
  • HBase中的Write-Ahead Log 详解
  • 自动猫砂盆是养猫新型智商税吗?测评2024年热门款智能猫砂盆分享
  • 【springboot9735】基于springboot+vue的车辆充电桩
  • java异常详解
  • vue3 vue2
  • Oceanbase学习之—docker下oceanbase部署体验
  • 从零开始:网页在线制作入门指南
  • 基于SpringBoot+Vue+Uniapp的仓库点单小程序的详细设计和实现
  • k8s的pod管理及优化
  • 零基础入门大模型,只看这5本就够了!