您的位置:首页 > 教育 > 培训 > 苏州建设有限公司_重庆网络公司招聘_网站seo文章_seo工具优化软件

苏州建设有限公司_重庆网络公司招聘_网站seo文章_seo工具优化软件

2025/5/17 19:16:03 来源:https://blog.csdn.net/2301_76166241/article/details/142796289  浏览:    关键词:苏州建设有限公司_重庆网络公司招聘_网站seo文章_seo工具优化软件
苏州建设有限公司_重庆网络公司招聘_网站seo文章_seo工具优化软件

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

目录

一、摘要

二、相关技术

三、系统设计

四、数据库设计 

五、核心代码 

六、论文参考 

七、源码获取


一、摘要

社会发展日新月异,用计算机应用实现数据管理功能已经算是很完善的了,但是随着移动互联网的到来,处理信息不再受制于地理位置的限制,处理信息及时高效,备受人们的喜爱。本次开发一套基于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);}}

六、论文参考 

七、源码获取

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

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

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com