diff --git a/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java b/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java index 3db1dc2..c0b739e 100644 --- a/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java +++ b/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java @@ -838,6 +838,23 @@ public class AppVerifyController extends BaseController return toAjax(asDeviceService.bandSn(asDevice)); } + /** + * 根据mac修改sn + */ + @Log(title = "根据mac修改sn", businessType = BusinessType.UPDATESN) + @PostMapping("/updateSn") + public AjaxResult updateSn(String sn,String mac,Long hardwareVersionId) + { + logger.info("根据mac修改sn:【sn="+sn+"】,【mac="+mac+"】,【hardwareVersionId="+hardwareVersionId+"】"); + AsDevice asDevice = new AsDevice(); + asDevice.setSn(sn); + asDevice.setMac(mac); + asDevice.setHardwareVersionId(hardwareVersionId); + asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NOT_BAND); + asDevice.setCreateTime(DateUtils.getNowDate()); + return toAjax(asDeviceService.updateSn(asDevice)); + } + /** * 根据userId获取areaId(管理员属于哪个运营区) */ diff --git a/electripper-common/src/main/java/com/ruoyi/common/enums/BusinessType.java b/electripper-common/src/main/java/com/ruoyi/common/enums/BusinessType.java index 274e897..ef14e66 100644 --- a/electripper-common/src/main/java/com/ruoyi/common/enums/BusinessType.java +++ b/electripper-common/src/main/java/com/ruoyi/common/enums/BusinessType.java @@ -177,6 +177,11 @@ public enum BusinessType * 绑定 */ BAND, + + /** + * 根据mac修改sn + */ + UPDATESN, /** * 实名认证 */ diff --git a/electripper-system/src/main/java/com/ruoyi/system/domain/EtCommandLog.java b/electripper-system/src/main/java/com/ruoyi/system/domain/EtCommandLog.java index 0b4cae1..e9761c7 100644 --- a/electripper-system/src/main/java/com/ruoyi/system/domain/EtCommandLog.java +++ b/electripper-system/src/main/java/com/ruoyi/system/domain/EtCommandLog.java @@ -50,6 +50,14 @@ public class EtCommandLog extends BaseEntity @Excel(name = "纬度") private String latitude; + /** 手机经度 */ + @Excel(name = "经度") + private String lon; + + /** 手机纬度 */ + @Excel(name = "纬度") + private String lat; + /** 回调状态 */ @Excel(name = "回调状态") private String callStatus; diff --git a/electripper-system/src/main/java/com/ruoyi/system/mapper/AsDeviceMapper.java b/electripper-system/src/main/java/com/ruoyi/system/mapper/AsDeviceMapper.java index 8a6528a..94f5c26 100644 --- a/electripper-system/src/main/java/com/ruoyi/system/mapper/AsDeviceMapper.java +++ b/electripper-system/src/main/java/com/ruoyi/system/mapper/AsDeviceMapper.java @@ -90,6 +90,14 @@ public interface AsDeviceMapper extends BaseMapper */ public int updateAsDeviceBySn(AsDevice asDevice); + /** + * 根据MAC修改设备 + * + * @param asDevice 设备 + * @return 结果 + */ + public int updateAsDeviceByMac(AsDevice asDevice); + /** * 删除设备 * diff --git a/electripper-system/src/main/java/com/ruoyi/system/service/IAsDeviceService.java b/electripper-system/src/main/java/com/ruoyi/system/service/IAsDeviceService.java index 35e3c90..490e88b 100644 --- a/electripper-system/src/main/java/com/ruoyi/system/service/IAsDeviceService.java +++ b/electripper-system/src/main/java/com/ruoyi/system/service/IAsDeviceService.java @@ -195,6 +195,11 @@ public interface IAsDeviceService extends IService */ public ResponseVo sendCommandWithResp(String mac, String token, String command, String type,String orderNo); + /** + * 发送命令(带响应) + */ + public ResponseVo sendCommandWithResp(String mac, String token, String command, String type,String orderNo,String lon,String lat); + /** * 查询数据点 */ @@ -370,6 +375,11 @@ public interface IAsDeviceService extends IService */ int bandSn(AsDevice asDevice); + /** + * 根据mac修改sn + */ + int updateSn(AsDevice asDevice); + /** * 根据mac号判断是否有绑定过 */ diff --git a/electripper-system/src/main/java/com/ruoyi/system/service/impl/AsDeviceServiceImpl.java b/electripper-system/src/main/java/com/ruoyi/system/service/impl/AsDeviceServiceImpl.java index 1c997de..9f91a1c 100644 --- a/electripper-system/src/main/java/com/ruoyi/system/service/impl/AsDeviceServiceImpl.java +++ b/electripper-system/src/main/java/com/ruoyi/system/service/impl/AsDeviceServiceImpl.java @@ -1247,6 +1247,35 @@ public class AsDeviceServiceImpl extends ServiceImpl i }, 0, TimeUnit.SECONDS); } + /* 异步保存发送命令日志*/ + private void asynchronousSaveLogWithLocation(String url,String command,String mac,String result,String type,String orderNo,String userName,String lon,String lat) { + //异步保存发送命令日志 + scheduledExecutorService.schedule(() -> { + EtCommandLog etCommandLog = new EtCommandLog(); + etCommandLog.setUrl(url); + etCommandLog.setCommand(command); + etCommandLog.setType(type); + etCommandLog.setMac(mac); + AsDevice device = asDeviceMapper.selectAsDeviceByMac(mac); + etCommandLog.setSn(device.getSn()); + etCommandLog.setResult(result); + etCommandLog.setLongitude(device.getLongitude()); + etCommandLog.setLatitude(device.getLatitude()); + etCommandLog.setLon(lon); + etCommandLog.setLat(lat); + etCommandLog.setCreateTime(DateUtils.getNowDate()); + JSONObject paramsObj = JSON.parseObject(result); + String code = paramsObj.getString("code"); + etCommandLog.setCallStatus(code); + etCommandLog.setOrderNo(orderNo); + etCommandLog.setCreateBy(userName); + int i = etCommandLogMapper.insertEtCommandLog(etCommandLog); + if(i>0){ + log.info("【发送命令】异步保存发送命令日志"); + } + }, 0, TimeUnit.SECONDS); + } + @Override /** 发送命令*/ public ResponseVo sendCommandWithResp(String mac, String token,String command,String type,String orderNo) { @@ -1270,6 +1299,29 @@ public class AsDeviceServiceImpl extends ServiceImpl i return JSON.parseObject(result,ResponseVo.class); } + @Override + /** 发送命令*/ + public ResponseVo sendCommandWithResp(String mac, String token,String command,String type,String orderNo,String lon,String lat) { + String param = "device_name=" + mac + "&product_id=" + productId +"&timeout=" + timeout; + String sendUrl = iotUrl+ IotConstants.ADDS_COMMAND + "?"+param; + String result = HttpUtils.sendPostWithToken(sendUrl, command, token); + log.info("【"+type+"】===>IOT请求调用结果:【{}】",result); + ResponseVo responseVo = JSON.parseObject(result, ResponseVo.class); + + if (responseVo.getCode() == 10500) { // 超时 + log.info("第一次请求超时,进行第二次请求..."); + result = HttpUtils.sendPostWithToken(sendUrl, command, token); + log.info("【" + type + "】===>IOT第二次请求调用结果:【{}】", result); + responseVo = JSON.parseObject(result, ResponseVo.class); + } + + if(responseVo.getCode() != 0){ + asynchronousUpdateOnlineStatus(mac); + } + asynchronousSaveLogWithLocation(sendUrl,command,mac,result,type,orderNo,null,lon,lat); + return JSON.parseObject(result,ResponseVo.class); + } + /** 查询数据点*/ @Override public DataPointRes historyDatapoints(String mac, String token) { @@ -1750,7 +1802,7 @@ public class AsDeviceServiceImpl extends ServiceImpl i if(ServiceConstants.RETURN_TYPE_NORMAL.equals(returnType)){ if(!"true".equals(isBluetooth)){ /** 2. 车辆远程关锁*/ - ResponseVo responseVo = sendCommandWithResp(device.getMac(), token, IotConstants.COMMAND_CLOSE + IotConstants.COMMAND_FREQUENCY_3600, "还车关锁",orderNo); + ResponseVo responseVo = sendCommandWithResp(device.getMac(), token, IotConstants.COMMAND_CLOSE + IotConstants.COMMAND_FREQUENCY_3600, "还车关锁",orderNo,lon,lat); if(responseVo.getCode()!=0){ log.info("【还车关锁】远程关锁失败"); throw new ServiceException("远程关锁失败"); @@ -2722,12 +2774,7 @@ public class AsDeviceServiceImpl extends ServiceImpl i public int bandSn(AsDevice asDevice) { AsDevice device = asDeviceMapper.selectAsDeviceByMac(asDevice.getMac()); if(StringUtils.isNotNull(device)){ - device.setSn(asDevice.getSn()); - device.setHardwareVersionId(asDevice.getHardwareVersionId()); - int i = asDeviceMapper.updateAsDeviceBySn(device); - if(i>0){ - log.info("【sn和mac号绑定】===>mac【{}】已经绑定过:更新sn【{}】成功",device.getMac(),device.getSn()); - } + throw new ServiceException("该MAC号已经存在"); }else{ // 调用onenet接口 CreateDeviceVo createDeviceVo = new CreateDeviceVo(); @@ -2755,6 +2802,23 @@ public class AsDeviceServiceImpl extends ServiceImpl i return 1; } + /** + * 根据mac修改sn + */ + @SneakyThrows + @Override + public int updateSn(AsDevice asDevice) { + AsDevice device = new AsDevice(); + device.setSn(asDevice.getSn()); + device.setHardwareVersionId(asDevice.getHardwareVersionId()); + device.setMac(asDevice.getMac()); + int i = asDeviceMapper.updateAsDeviceByMac(device); + if(i>0){ + log.info("【sn和mac号绑定】===>mac【{}】已经绑定过:更新sn【{}】成功",device.getMac(),device.getSn()); + } + return 1; + } + /** * 更新最新的位置信息 diff --git a/electripper-system/src/main/resources/mapper/system/AsDeviceMapper.xml b/electripper-system/src/main/resources/mapper/system/AsDeviceMapper.xml index 8240288..4ca4157 100644 --- a/electripper-system/src/main/resources/mapper/system/AsDeviceMapper.xml +++ b/electripper-system/src/main/resources/mapper/system/AsDeviceMapper.xml @@ -356,9 +356,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" where sn = #{sn} - - update + + update et_device + + sn = #{sn}, + hardware_version_id = #{hardwareVersionId}, + + where mac = #{mac} diff --git a/electripper-system/src/main/resources/mapper/system/EtCommandLogMapper.xml b/electripper-system/src/main/resources/mapper/system/EtCommandLogMapper.xml index 5533ae9..cfd8b9f 100644 --- a/electripper-system/src/main/resources/mapper/system/EtCommandLogMapper.xml +++ b/electripper-system/src/main/resources/mapper/system/EtCommandLogMapper.xml @@ -14,6 +14,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + + @@ -22,7 +24,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - select id, url, command, type, mac, sn, result, longitude, latitude, call_status, create_by, create_time, order_no, msg from et_command_log + select id, url, command, type, mac, sn, result, longitude, latitude, lon, lat, call_status, create_by, create_time, order_no, msg from et_command_log