Springboot+Vue项目-基于Java+MySQL的制造装备物联及生产管理ERP系统(附源码+演示视频+LW)

大家好!我是程序猿老A,感谢您阅读本文,欢迎一键三连哦。

💞当前专栏:Java毕业设计

精彩专栏推荐👇🏻👇🏻👇🏻

🎀 Python毕业设计
🌎微信小程序毕业设计

开发环境

开发语言:Java
框架:Springboot+Vue
JDK版本:JDK1.8
服务器:tomcat7
数据库:mysql 5.7
数据库工具:Navicat12
开发软件:eclipse/myeclipse/idea
Maven包:Maven3.3.9
浏览器:谷歌浏览器

演示视频

springboot271制造装备物联及生产管理ERP系统

原版高清演示视频-编号:271
https://pan.quark.cn/s/5cda95b17ee0

源码下载地址:

https://download.csdn.net/download/2301_76953549/89100446

LW目录

【如需全文请按文末获取联系】
在这里插入图片描述
在这里插入图片描述

目录

  • 开发环境
  • 演示视频
  • 源码下载地址:
  • LW目录
  • 一、项目简介
  • 二、系统设计
    • 2.1软件功能模块设计
    • 2.2数据库设计
  • 三、系统项目部分截图
    • 3.1员工信息管理
    • 3.2材料信息管理
    • 3.3设备信息管理
    • 3.4设备类型管理
  • 四、部分核心代码
    • 4.1 用户部分
  • 获取源码或论文

一、项目简介

制造装备物联及生产管理ERP系统在对开发工具的选择上也很慎重,为了便于开发实现,选择的开发工具为Eclipse,选择的数据库工具为Mysql。以此搭建开发环境实现制造装备物联及生产管理ERP系统的功能。

二、系统设计

2.1软件功能模块设计

为了让系统的编码可以顺利进行,特意对本系统功能进行细分设计,设计的系统功能结构见下图。

在这里插入图片描述

2.2数据库设计

(1)下图是出入库详情实体和其具备的属性。
在这里插入图片描述
(2)下图是产品信息实体和其具备的属性。
在这里插入图片描述
(3)下图是质量监控实体和其具备的属性。
在这里插入图片描述
(7)下图是设备信息实体和其具备的属性。
在这里插入图片描述
(8)下图是生产计划实体和其具备的属性。
在这里插入图片描述
(9)下图是顾客订单实体和其具备的属性。
在这里插入图片描述
(10)下图是出入库实体和其具备的属性。
在这里插入图片描述
(11)下图是设备检修实体和其具备的属性。
在这里插入图片描述
(13)下图是用户表实体和其具备的属性。
在这里插入图片描述

三、系统项目部分截图

3.1员工信息管理

如图5.1显示的就是员工信息管理页面,此页面提供给管理员的功能有:员工信息的查询管理,可以删除员工信息、修改员工信息、新增员工信息,
还进行了对用户名称的模糊查询的条件
在这里插入图片描述

3.2材料信息管理

如图5.2显示的就是材料信息管理页面,此页面提供给管理员的功能有:查看已发布的材料信息数据,修改材料信息,材料信息作废,即可删除,还进行了对材料信息名称的模糊查询 材料信息信息的类型查询等等一些条件。
在这里插入图片描述

3.3设备信息管理

如图5.3显示的就是设备信息管理页面,此页面提供给管理员的功能有:根据设备信息进行条件查询,还可以对设备信息进行新增、修改、查询操作等等。
在这里插入图片描述

3.4设备类型管理

如图5.4显示的就是设备类型管理页面,此页面提供给管理员的功能有:根据设备类型进行新增、修改、查询操作等等。
在这里插入图片描述

四、部分核心代码

4.1 用户部分


package com.controller;import java.io.File;
import java.math.BigDecimal;
import java.net.URL;
import java.text.SimpleDateFormat;
import com.alibaba.fastjson.JSONObject;
import java.util.*;
import org.springframework.beans.BeanUtils;
import javax.servlet.http.HttpServletRequest;
import org.springframework.web.context.ContextLoader;
import javax.servlet.ServletContext;
import com.service.TokenService;
import com.utils.*;
import java.lang.reflect.InvocationTargetException;import com.service.DictionaryService;
import org.apache.commons.lang3.StringUtils;
import com.annotation.IgnoreAuth;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.entity.*;
import com.entity.view.*;
import com.service.*;
import com.utils.PageUtils;
import com.utils.R;
import com.alibaba.fastjson.*;/*** 出入库* 后端接口* @author* @email
*/
@RestController
@Controller
@RequestMapping("/cailiaoChuruInout")
public class CailiaoChuruInoutController {private static final Logger logger = LoggerFactory.getLogger(CailiaoChuruInoutController.class);@Autowiredprivate CailiaoChuruInoutService cailiaoChuruInoutService;@Autowiredprivate TokenService tokenService;@Autowiredprivate DictionaryService dictionaryService;//级联表service// 列表详情的表级联service@Autowiredprivate CailiaoChuruInoutListService cailiaoChuruInoutListService;
//    @Autowired
//    private YonghuService yonghuService;@Autowiredprivate CailiaoService cailiaoService;@Autowiredprivate YonghuService yonghuService;@Autowiredprivate WeixiuyuanService weixiuyuanService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));String role = String.valueOf(request.getSession().getAttribute("role"));if(StringUtil.isEmpty(role))return R.error(511,"权限为空");else if("员工".equals(role))params.put("yonghuId",request.getSession().getAttribute("userId"));else if("维修员".equals(role))params.put("weixiuyuanId",request.getSession().getAttribute("userId"));if(params.get("orderBy")==null || params.get("orderBy")==""){params.put("orderBy","id");}PageUtils page = cailiaoChuruInoutService.queryPage(params);//字典表数据转换List<CailiaoChuruInoutView> list =(List<CailiaoChuruInoutView>)page.getList();for(CailiaoChuruInoutView c:list){//修改对应字典表字段dictionaryService.dictionaryConvert(c, request);}return R.ok().put("data", page);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id, HttpServletRequest request){logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);CailiaoChuruInoutEntity cailiaoChuruInout = cailiaoChuruInoutService.selectById(id);if(cailiaoChuruInout !=null){//entity转viewCailiaoChuruInoutView view = new CailiaoChuruInoutView();BeanUtils.copyProperties( cailiaoChuruInout , view );//把实体数据重构到view中//修改对应字典表字段dictionaryService.dictionaryConvert(view, request);return R.ok().put("data", view);}else {return R.error(511,"查不到数据");}}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody CailiaoChuruInoutEntity cailiaoChuruInout, HttpServletRequest request){logger.debug("save方法:,,Controller:{},,cailiaoChuruInout:{}",this.getClass().getName(),cailiaoChuruInout.toString());String role = String.valueOf(request.getSession().getAttribute("role"));if(StringUtil.isEmpty(role))return R.error(511,"权限为空");Wrapper<CailiaoChuruInoutEntity> queryWrapper = new EntityWrapper<CailiaoChuruInoutEntity>().eq("cailiao_churu_inout_uuid_number", cailiaoChuruInout.getCailiaoChuruInoutUuidNumber()).eq("cailiao_churu_inout_name", cailiaoChuruInout.getCailiaoChuruInoutName()).eq("cailiao_churu_inout_types", cailiaoChuruInout.getCailiaoChuruInoutTypes());logger.info("sql语句:"+queryWrapper.getSqlSegment());CailiaoChuruInoutEntity cailiaoChuruInoutEntity = cailiaoChuruInoutService.selectOne(queryWrapper);if(cailiaoChuruInoutEntity==null){cailiaoChuruInout.setInsertTime(new Date());cailiaoChuruInout.setCreateTime(new Date());cailiaoChuruInoutService.insert(cailiaoChuruInout);return R.ok();}else {return R.error(511,"表中有相同数据");}}/*** 后端修改*/@RequestMapping("/update")public R update(@RequestBody CailiaoChuruInoutEntity cailiaoChuruInout, HttpServletRequest request){logger.debug("update方法:,,Controller:{},,cailiaoChuruInout:{}",this.getClass().getName(),cailiaoChuruInout.toString());String role = String.valueOf(request.getSession().getAttribute("role"));
//        if(StringUtil.isEmpty(role))
//            return R.error(511,"权限为空");//根据字段查询是否有相同数据Wrapper<CailiaoChuruInoutEntity> queryWrapper = new EntityWrapper<CailiaoChuruInoutEntity>().notIn("id",cailiaoChuruInout.getId()).andNew().eq("cailiao_churu_inout_uuid_number", cailiaoChuruInout.getCailiaoChuruInoutUuidNumber()).eq("cailiao_churu_inout_name", cailiaoChuruInout.getCailiaoChuruInoutName()).eq("cailiao_churu_inout_types", cailiaoChuruInout.getCailiaoChuruInoutTypes());logger.info("sql语句:"+queryWrapper.getSqlSegment());CailiaoChuruInoutEntity cailiaoChuruInoutEntity = cailiaoChuruInoutService.selectOne(queryWrapper);if(cailiaoChuruInoutEntity==null){cailiaoChuruInoutService.updateById(cailiaoChuruInout);//根据id更新return R.ok();}else {return R.error(511,"表中有相同数据");}}/*** 出库*/@RequestMapping("/outCailiaoChuruInoutList")public R outCailiaoChuruInoutList(@RequestBody  Map<String, Object> params,HttpServletRequest request){logger.debug("outCailiaoChuruInoutList方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));String role = String.valueOf(request.getSession().getAttribute("role"));if(StringUtil.isEmpty(role))return R.error(511,"权限为空");//取出入库名称并判断是否存在String cailiaoChuruInoutName = String.valueOf(params.get("cailiaoChuruInoutName"));Wrapper<CailiaoChuruInoutEntity> queryWrapper = new EntityWrapper<CailiaoChuruInoutEntity>().eq("cailiao_churu_inout_name", cailiaoChuruInoutName);CailiaoChuruInoutEntity cailiaoChuruInoutSelectOne = cailiaoChuruInoutService.selectOne(queryWrapper);if(cailiaoChuruInoutSelectOne != null)return R.error(511,"出入库名称已被使用");//取当前表的级联表并判断是否前台传入Map<String, Integer> map = (Map<String, Integer>) params.get("map");if(map == null || map.size() == 0)return R.error(511,"列表内容不能为空");Set<String> ids = map.keySet();List<CailiaoEntity> cailiaoList = cailiaoService.selectBatchIds(ids);if(cailiaoList == null || cailiaoList.size() == 0){return R.error(511,"查数据库查不到数据");}else{for(CailiaoEntity w:cailiaoList){Integer value = w.getCailiaoKucunNumber()-map.get(String.valueOf(w.getId()));if(value <0){return R.error(511,"出库数量大于库存数量");}w.setCailiaoKucunNumber(value);}}//当前表CailiaoChuruInoutEntity cailiaoChuruInoutEntity = new CailiaoChuruInoutEntity<>();cailiaoChuruInoutEntity.setCailiaoChuruInoutUuidNumber(String.valueOf(new Date().getTime()));cailiaoChuruInoutEntity.setCailiaoChuruInoutName(cailiaoChuruInoutName);cailiaoChuruInoutEntity.setCailiaoChuruInoutTypes(1);cailiaoChuruInoutEntity.setCailiaoChuruInoutContent("");cailiaoChuruInoutEntity.setInsertTime(new Date());cailiaoChuruInoutEntity.setCreateTime(new Date());boolean insertCailiaoChuruInout = cailiaoChuruInoutService.insert(cailiaoChuruInoutEntity);if(insertCailiaoChuruInout){//级联表ArrayList<CailiaoChuruInoutListEntity> cailiaoChuruInoutLists = new ArrayList<>();for(String id:ids){CailiaoChuruInoutListEntity cailiaoChuruInoutListEntity = new CailiaoChuruInoutListEntity();cailiaoChuruInoutListEntity.setCailiaoChuruInoutId(cailiaoChuruInoutEntity.getId());cailiaoChuruInoutListEntity.setCailiaoId(Integer.valueOf(id));cailiaoChuruInoutListEntity.setCailiaoChuruInoutListNumber(map.get(id));cailiaoChuruInoutListEntity.setInsertTime(new Date());cailiaoChuruInoutListEntity.setCreateTime(new Date());cailiaoChuruInoutLists.add(cailiaoChuruInoutListEntity);cailiaoService.updateBatchById(cailiaoList);}cailiaoChuruInoutListService.insertBatch(cailiaoChuruInoutLists);}return R.ok();}/***入库*/@RequestMapping("/inCailiaoChuruInoutList")public R inCailiaoChuruInoutList(@RequestBody  Map<String, Object> params,HttpServletRequest request){logger.debug("inCailiaoChuruInoutList方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));//params:{"map":{"1":2,"2":3},"wuziOutinName":"订单1"}String role = String.valueOf(request.getSession().getAttribute("role"));if(StringUtil.isEmpty(role))return R.error(511,"权限为空");//取当前表名称并判断String cailiaoChuruInoutName = String.valueOf(params.get("cailiaoChuruInoutName"));Wrapper<CailiaoChuruInoutEntity> queryWrapper = new EntityWrapper<CailiaoChuruInoutEntity>().eq("cailiao_churu_inout_name", cailiaoChuruInoutName);CailiaoChuruInoutEntity cailiaoChuruInoutSelectOne = cailiaoChuruInoutService.selectOne(queryWrapper);if(cailiaoChuruInoutSelectOne != null)return R.error(511,"出入库名称已被使用");//取当前表的级联表并判断是否前台传入Map<String, Integer> map = (Map<String, Integer>) params.get("map");if(map == null || map.size() == 0)return R.error(511,"列表内容不能为空");Set<String> ids = map.keySet();List<CailiaoEntity> cailiaoList = cailiaoService.selectBatchIds(ids);if(cailiaoList == null || cailiaoList.size() == 0){return R.error(511,"查数据库查不到数据");}else{for(CailiaoEntity w:cailiaoList){w.setCailiaoKucunNumber(w.getCailiaoKucunNumber()+map.get(String.valueOf(w.getId())));}}//当前表CailiaoChuruInoutEntity cailiaoChuruInoutEntity = new CailiaoChuruInoutEntity<>();cailiaoChuruInoutEntity.setCailiaoChuruInoutUuidNumber(String.valueOf(new Date().getTime()));cailiaoChuruInoutEntity.setCailiaoChuruInoutName(cailiaoChuruInoutName);cailiaoChuruInoutEntity.setCailiaoChuruInoutTypes(2);cailiaoChuruInoutEntity.setCailiaoChuruInoutContent("");cailiaoChuruInoutEntity.setInsertTime(new Date());cailiaoChuruInoutEntity.setCreateTime(new Date());boolean insertCailiaoChuruInout = cailiaoChuruInoutService.insert(cailiaoChuruInoutEntity);if(insertCailiaoChuruInout){//级联表ArrayList<CailiaoChuruInoutListEntity> cailiaoChuruInoutLists = new ArrayList<>();for(String id:ids){CailiaoChuruInoutListEntity cailiaoChuruInoutListEntity = new CailiaoChuruInoutListEntity();cailiaoChuruInoutListEntity.setCailiaoChuruInoutId(cailiaoChuruInoutEntity.getId());cailiaoChuruInoutListEntity.setCailiaoId(Integer.valueOf(id));cailiaoChuruInoutListEntity.setCailiaoChuruInoutListNumber(map.get(id));cailiaoChuruInoutListEntity.setInsertTime(new Date());cailiaoChuruInoutListEntity.setCreateTime(new Date());cailiaoChuruInoutLists.add(cailiaoChuruInoutListEntity);cailiaoService.updateBatchById(cailiaoList);}cailiaoChuruInoutListService.insertBatch(cailiaoChuruInoutLists);}return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Integer[] ids){logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());cailiaoChuruInoutService.deleteBatchIds(Arrays.asList(ids));cailiaoChuruInoutListService.delete(new EntityWrapper<CailiaoChuruInoutListEntity>().in("cailiao_churu_inout_id",ids));return R.ok();}/*** 批量上传*/@RequestMapping("/batchInsert")public R save( String fileName){logger.debug("batchInsert方法:,,Controller:{},,fileName:{}",this.getClass().getName(),fileName);try {List<CailiaoChuruInoutEntity> cailiaoChuruInoutList = new ArrayList<>();//上传的东西Map<String, List<String>> seachFields= new HashMap<>();//要查询的字段Date date = new Date();int lastIndexOf = fileName.lastIndexOf(".");if(lastIndexOf == -1){return R.error(511,"该文件没有后缀");}else{String suffix = fileName.substring(lastIndexOf);if(!".xls".equals(suffix)){return R.error(511,"只支持后缀为xls的excel文件");}else{URL resource = this.getClass().getClassLoader().getResource("static/upload/" + fileName);//获取文件路径File file = new File(resource.getFile());if(!file.exists()){return R.error(511,"找不到上传文件,请联系管理员");}else{List<List<String>> dataList = PoiUtil.poiImport(file.getPath());//读取xls文件dataList.remove(0);//删除第一行,因为第一行是提示for(List<String> data:dataList){//循环CailiaoChuruInoutEntity cailiaoChuruInoutEntity = new CailiaoChuruInoutEntity();
//                            cailiaoChuruInoutEntity.setCailiaoChuruInoutUuidNumber(data.get(0));                    //出入库流水号 要改的
//                            cailiaoChuruInoutEntity.setCailiaoChuruInoutName(data.get(0));                    //出入库名称 要改的
//                            cailiaoChuruInoutEntity.setCailiaoChuruInoutTypes(Integer.valueOf(data.get(0)));   //出入库类型 要改的
//                            cailiaoChuruInoutEntity.setCailiaoChuruInoutContent("");//照片
//                            cailiaoChuruInoutEntity.setInsertTime(date);//时间
//                            cailiaoChuruInoutEntity.setCreateTime(date);//时间cailiaoChuruInoutList.add(cailiaoChuruInoutEntity);//把要查询是否重复的字段放入map中//出入库流水号if(seachFields.containsKey("cailiaoChuruInoutUuidNumber")){List<String> cailiaoChuruInoutUuidNumber = seachFields.get("cailiaoChuruInoutUuidNumber");cailiaoChuruInoutUuidNumber.add(data.get(0));//要改的}else{List<String> cailiaoChuruInoutUuidNumber = new ArrayList<>();cailiaoChuruInoutUuidNumber.add(data.get(0));//要改的seachFields.put("cailiaoChuruInoutUuidNumber",cailiaoChuruInoutUuidNumber);}}//查询是否重复//出入库流水号List<CailiaoChuruInoutEntity> cailiaoChuruInoutEntities_cailiaoChuruInoutUuidNumber = cailiaoChuruInoutService.selectList(new EntityWrapper<CailiaoChuruInoutEntity>().in("cailiao_churu_inout_uuid_number", seachFields.get("cailiaoChuruInoutUuidNumber")));if(cailiaoChuruInoutEntities_cailiaoChuruInoutUuidNumber.size() >0 ){ArrayList<String> repeatFields = new ArrayList<>();for(CailiaoChuruInoutEntity s:cailiaoChuruInoutEntities_cailiaoChuruInoutUuidNumber){repeatFields.add(s.getCailiaoChuruInoutUuidNumber());}return R.error(511,"数据库的该表中的 [出入库流水号] 字段已经存在 存在数据为:"+repeatFields.toString());}cailiaoChuruInoutService.insertBatch(cailiaoChuruInoutList);return R.ok();}}}}catch (Exception e){return R.error(511,"批量插入数据异常,请联系管理员");}}}

获取源码或论文

如需对应的LW或源码,以及其他定制需求,也可以点我头像查看个人简介联系。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/10561.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Web自动化-日志收集

目标 1. 理解日志的相关概念 2. 掌握日志的基本用法 3. 掌握日志的高级用法 一、日志相关概念 目标 1. 了解日志的概念 2. 理解日志的作用 3. 掌握常见的日志级别 1. 日志 概念&#xff1a;日志就是用于记录系统运行时的信息&#xff0c;对一个事件的记录&#xff1b…

ppt转pdf的java实现

一、实现方式 java采用jacob包的功能&#xff0c;把ppt演示文稿转换为pdf。 支持文件格式&#xff1a;pptx,ppt 二、事先准备 1、依赖于office&#xff0c;需安装office办公软件 2、需要下载一个jacob-1.20-x64.dll的文件&#xff0c;放到java的bin目录下。 文件可以网上搜…

电影网站|基于SSM+vue的电影网站系统(源码+数据库+文档)

电影网站 目录 基于SSMvue的电影网站系统 一、前言 二、系统设计 三、系统功能设计 1 系统功能模块 2 管理员功能模块 四、数据库设计 五、核心代码 六、论文参考 七、最新计算机毕设选题推荐 八、源码获取&#xff1a; 博主介绍&#xff1a;✌️大厂码农|毕设布道…

贪心算法-----柠檬水找零

今日题目&#xff1a;leetcode860 题目链接&#xff1a;点击跳转题目 分析&#xff1a; 顾客只会给三种面值&#xff1a;5、10、20&#xff0c;先分类讨论 当收到5美元时&#xff1a;不用找零&#xff0c;面值5张数1当收到10美元时&#xff1a;找零5美元&#xff0c;面值5张数…

未授权访问:JBoss未授权访问漏洞

目录 1、漏洞原理  2、环境搭建 3、未授权访问 4、利用jboss.deployment getshell 防御手段 今天继续学习各种未授权访问的知识和相关的实操实验&#xff0c;一共有好多篇&#xff0c;内容主要是参考先知社区的一位大佬的关于未授权访问的好文章&#xff0c;还有其他大佬…

【Ubuntu 安装erlang】

apt-get 安装 apt-get install erlang或 源码安装 git clone https://github.com/erlang/otp.git cd otp git checkout maint-25 # current latest stable version ./configure make make install安装完后&#xff0c;验证是否成功 # 命令行输入 erl

系统集成项目管理工程师第4章思维导图发布

2024年开年&#xff0c;软考系统集成项目管理工程师官方教程&#xff0c;迎来了阔别7年的大改版&#xff0c;改版之后的软考中项考试&#xff0c;离同宗兄弟高项考试渐行渐远。 中项第3版教程&#xff0c;仅仅从教程来看&#xff0c;其难度已经不亚于高级的信息系统项目管理师&…

数据结构与算法学习笔记三---循环队列的表示和实现(C语言)

目录 前言 1.为啥要使用循环队列 2.队列的顺序表示和实现 1.定义 2.初始化 3.销毁 4.清空 5.空队列 6.队列长度 7.获取队头 8.入队 9.出队 10.遍历队列 11.完整代码 前言 本篇博客介绍栈和队列的表示和实现。 1.为啥要使用循环队列 上篇文章中我们知道了顺序队列…

Hive Transaction事务表(含实现原理)

Hive Transaction事务表 在Hive中&#xff0c;事务表&#xff08;Transactional Tables&#xff09;允许用户执行事务性操作&#xff0c;包括ACID&#xff08;原子性、一致性、隔离性、持久性&#xff09;特性。事务表是在Hive 0.14版本引入的&#xff0c;并且在后续版本中不断…

LabVIEW天然气压缩因子软件设计

LabVIEW天然气压缩因子软件设计 项目背景 天然气作为一种重要的能源&#xff0c;其压缩因子的准确计算对于流量的计量和输送过程的优化具有关键意义。传统的计算方法不仅步骤繁琐&#xff0c;而且难以满足现场快速响应的需求。因此&#xff0c;开发一款既能保证计算精度又便于…

使用Pandas对Data列进行基于顺序的分组排列

目录 一、引言 二、Pandas库简介 三、按照数据列中元素出现的先后顺序进行分组排列 四、案例分析 五、技术细节探讨与扩展应用 1. 技术细节 2. 扩展应用 3. 示例代码&#xff1a;用户行为分析 4. 进阶应用&#xff1a;分组后的聚合操作 5. 分组后的数据筛选 6. 分组…

【DevOps】Linux 安全:iptables 组成、命令及应用场景详解

导读&#xff1a;全面掌握 iptables&#xff1a;从基础到实践 在 Linux 系统中&#xff0c;iptables 是一个非常强大的工具&#xff0c;它不仅是系统管理员用来构建和管理网络防火墙的首选工具&#xff0c;而且也是一个功能丰富的网络流量处理系统。无论是进行包过滤、监控网络…

学习笔记:【QC】Android Q qmi扩展nvReadItem/nvWriteItem

一、qmi初始化 流程图 初始化流程: 1、主入口&#xff1a; vendor/qcom/proprietary/qcril-hal/qcrild/qcrild/rild.c int main(int argc, char **argv) { const RIL_RadioFunctions *(*rilInit)(const struct RIL_Env *, int, char **); rilInit RIL_Init; funcs rilInit…

李彦宏回顾大模型重构百度这一年

“大模型我们走在最前面&#xff0c;我们需要去勇闯无人区&#xff0c;需要去冒前人没有冒过的风险。”近日&#xff0c;在百度一场内部颁奖活动中&#xff0c;百度创始人、董事长兼首席执行官李彦宏指出&#xff0c;百度一直坚信技术可以改变世界&#xff0c;会一直沿着这条路…

docker的centos容器使用yum报错

错误描述 学习docker过程中&#xff0c;基于 centos 镜像自定义新的镜像。拉取一个Centos镜像&#xff0c;并运行容器&#xff0c;容器安装vim&#xff0c;报错了。 报错&#xff1a;Error: Failed to download metadata for repo appstream: Cannot prepare internal mirror…

python视频转码脚本

今天有一个临时的需求&#xff0c;就是需要将一个wmv的初步转码成mp4的格式。找了一圈&#xff0c;免费的工具少&#xff0c;即使有免费的工具&#xff0c;在功能上也是有所限制&#xff0c;或者会给你塞广告或者附带安装其它流氓小游戏或者杀毒程序。 我并非不支持正版&#…

JVM 类加载机制

JVM 类加载机制分为五个部分&#xff1a;加载&#xff0c;验证&#xff0c;准备&#xff0c;解析&#xff0c;初始化&#xff0c;下面我们就分别来看一下这五个过程。 加载 加载是类加载过程中的一个阶段&#xff0c;这个阶段会在内存中生成一个代表这个类的 java.lang.class 对…

Navicat Premium安装pojie版

下载、安装mysql&#xff0c;环境变量配置 1、官网下载mysql&#xff1a;https://www.mysql.com/downloads/ 下载成功&#xff0c;进行安装 一直点下一步 验证&#xff0c;开始中搜索mysql 说明安装成功 环境变量配置 默认安装路径C:\Program Files\MySQL …

Kafka和Spark Streaming的组合使用学习笔记(Spark 3.5.1)

一、安装Kafka 1.执行以下命令完成Kafka的安装&#xff1a; cd ~ //默认压缩包放在根目录 sudo tar -zxf kafka_2.12-2.6.0.tgz -C /usr/local cd /usr/local sudo mv kafka_2.12-2.6.0 kafka-2.6.0 sudo chown -R qiangzi ./kafka-2.6.0 二、启动Kafaka 1.首先需要启动K…

计算机毕业设计Python地震预测系统 地震数据分析可视化 地震爬虫 大数据毕业设计 Flink Hadoop 深度学习 机器学习 人工智能 知识图谱

学生信息 姓名&#xff1a;  祁浩 题目&#xff1a; 基于Python的中国地震数据分析与可视化系统的设计与实现 学号&#xff1a; 2020135211 班级&#xff1a; 20大数据本科2班 指导教师&#xff1a; 刘思思 答辩过程 学生开题陈述 为了让学习者更好的了解了解地震…