设备巡检系统方案

1、设备台账、设计巡检线路、周期、巡检班组、巡检人员、巡检时间,线路设置,一键报警设置、工但维护、设备二维码打印,班组日志,上传记录,线路巡检耗时,设备巡检耗时,线路缺勤等等功能。

2、日常巡检,临时巡检,报警通知,工但维护。

3、硬件包含了 nfc 卡片 ,振动传感器。 

极光推送代码:

/**
     * 绑定极光推送
     * */
    @PostMapping("/sendResult")
    @ApiOperation("手机设备标识")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "audience",value = "手机设备标识",required = true),
            @ApiImplicitParam(name = "model",value = "手机系统型号",required = true)
    })
    public Result bingModel(@RequestBody SysUserDTO sysUserDTO){

        // 获取当前用户
        Subject subject = SecurityUtils.getSubject();
        UserDetail user = (UserDetail)subject.getPrincipal();
        SysUserEntity sysUserEntity = new SysUserEntity();
        sysUserEntity.setId(user.getId());
        sysUserEntity.setAudience(sysUserDTO.getAudience());
        sysUserEntity.setMobile(sysUserDTO.getMobile());
        sysUserService.updateById(sysUserEntity);

        return new Result();
    }

5、智能巡检系统的应用范围 应用在钢厂,电厂,化工厂,药厂,定点巡检高速,加油站 ,服务区等等还有很多,这里就不做详细的展开了,我们公司有两年多的巡检系统开发经验,已经有成熟的巡检系统。

下载和上传功能

@Autowired
    private TaskOhService taskOhService;

    //@Autowired
    //private RedisUtils redisUtils;

    @Autowired
    private TaskDataService taskDataService;

    @GetMapping("result")
    @ApiOperation("下载巡检结果")
    public Result result() throws Exception {
        Date dt = new Date();
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");

        List<DownloadLineVo> download = taskOhService.download(simpleDateFormat.format(dt));

        return new Result().ok(download);
    }


    @GetMapping("downResult")
    @ApiModelProperty("测试下载巡检结果")
    public Result downResult(){
        Subject subject = SecurityUtils.getSubject();
        UserDetail user = (UserDetail)subject.getPrincipal();
        Long userId = user.getId();

        //List<DownloadLineVo> download = JSONArray.parseArray(JSON.toJSONString(redisUtils.get("Task:" + userId + simpleDateFormat.format(dt))),DownloadLineVo.class);
        // 查询数据库

        List<DownloadLineVo> download = taskDataService.getDownload(userId);


        return new Result().ok(download);
    }

6、传统的巡检员巡检设备,通过人工经验来判断设备是否出问题,或者根据某个仪器来进行测量,在旁边本子上面记录 上 设备异常,这种巡检方式受限于巡检人员的工作经验,记录的记录容易丢失,不产生数据价值。而智能巡检采用的是巡检人员 手持无线振动传感器,连接手机终端,实时测量数据,上传到电脑端。数据保存到云端,长期积累的数据才会产生价值。

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值