|
@@ -14,6 +14,8 @@ import com.bz.smart_city.dto.assistant.PlanCommunityDTO;
|
|
|
import com.bz.smart_city.dto.udip.DataCommandRequestDTO;
|
|
|
import com.bz.smart_city.entity.*;
|
|
|
import com.bz.smart_city.service.*;
|
|
|
+import com.bz.smart_city.service.udip.EasylinkinUtils;
|
|
|
+import com.bz.smart_city.service.udip.Lora188Parser;
|
|
|
import com.bz.smart_city.service.udip.UdipEtlDataCommandService;
|
|
|
import com.bz.smart_city.service.udip.UdipUnitService;
|
|
|
import com.github.pagehelper.PageHelper;
|
|
@@ -98,6 +100,8 @@ public class DeviceServiceImpl implements DeviceService {
|
|
|
private UdipEtlDataCommandService udipEtlDataCommandService;
|
|
|
@Autowired
|
|
|
private DeviceValveRecordService deviceValveRecordService;
|
|
|
+ @Autowired
|
|
|
+ private EasylinkinUtils easylinkinUtils;
|
|
|
|
|
|
@Override
|
|
|
public int insert(Device device) {
|
|
@@ -1339,32 +1343,46 @@ public class DeviceServiceImpl implements DeviceService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if (device.getUdipId() != null && !"".equals(device.getUdipId())) {
|
|
|
+ if(device.getDeviceType()==30){
|
|
|
//1、下发开关阀门
|
|
|
Map<String,Object> map = new HashMap<>();
|
|
|
- map.put("electronicNo","AAAAAAAAAAAAAA");
|
|
|
- map.put("valveStatus", sendValveStatus);//阀门状态 0:关阀 1:开阀
|
|
|
- DataCommandRequestDTO dataCommandRequest = new DataCommandRequestDTO();
|
|
|
- dataCommandRequest.setDeviceId(device.getUdipId());
|
|
|
- dataCommandRequest.setUnitIdentifier(device.getDeviceNo());
|
|
|
- dataCommandRequest.setReceiveTime(new Date());
|
|
|
- dataCommandRequest.setMethod("WriteValve");
|
|
|
- dataCommandRequest.setParams(map);
|
|
|
- JSONObject commandResult = udipEtlDataCommandService.commandSend(dataCommandRequest);
|
|
|
-
|
|
|
- //2、插入开关阀门记录
|
|
|
- DeviceValveRecord deviceValveRecord = new DeviceValveRecord();
|
|
|
- deviceValveRecord.setDeviceId(deviceId);
|
|
|
- deviceValveRecord.setSendValveStatus(Integer.valueOf(sendValveStatus));
|
|
|
- deviceValveRecord.setSendStatus(1);
|
|
|
- deviceValveRecord.setCommandId(commandResult.getString("commandId"));
|
|
|
- deviceValveRecord.setCommandStatus(commandResult.getString("status"));
|
|
|
- deviceValveRecord.setRemark("");
|
|
|
- deviceValveRecordService.insertSelective(deviceValveRecord);
|
|
|
+ Map<String,Object> paras = new HashMap<>();
|
|
|
+ paras.put("electronicNo",device.getWaterMeterNo());
|
|
|
+ paras.put("valveStatus", sendValveStatus);//阀门状态 0:关阀 1:开阀
|
|
|
+ map.put("params", paras);
|
|
|
+ map.put("method", "WriteValve");
|
|
|
+ easylinkinUtils.sendDownlink(device.getDeviceNo(),map);
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ if (device.getUdipId() != null && !"".equals(device.getUdipId())) {
|
|
|
+ //1、下发开关阀门
|
|
|
+ Map<String,Object> map = new HashMap<>();
|
|
|
+ map.put("electronicNo","AAAAAAAAAAAAAA");
|
|
|
+ map.put("valveStatus", sendValveStatus);//阀门状态 0:关阀 1:开阀
|
|
|
+ DataCommandRequestDTO dataCommandRequest = new DataCommandRequestDTO();
|
|
|
+ dataCommandRequest.setDeviceId(device.getUdipId());
|
|
|
+ dataCommandRequest.setUnitIdentifier(device.getDeviceNo());
|
|
|
+ dataCommandRequest.setReceiveTime(new Date());
|
|
|
+ dataCommandRequest.setMethod("WriteValve");
|
|
|
+ dataCommandRequest.setParams(map);
|
|
|
+ JSONObject commandResult = udipEtlDataCommandService.commandSend(dataCommandRequest);
|
|
|
+
|
|
|
+ //2、插入开关阀门记录
|
|
|
+ DeviceValveRecord deviceValveRecord = new DeviceValveRecord();
|
|
|
+ deviceValveRecord.setDeviceId(deviceId);
|
|
|
+ deviceValveRecord.setSendValveStatus(Integer.valueOf(sendValveStatus));
|
|
|
+ deviceValveRecord.setSendStatus(1);
|
|
|
+ deviceValveRecord.setCommandId(commandResult.getString("commandId"));
|
|
|
+ deviceValveRecord.setCommandStatus(commandResult.getString("status"));
|
|
|
+ deviceValveRecord.setRemark("");
|
|
|
+ deviceValveRecordService.insertSelective(deviceValveRecord);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
//3、更新按钮阀门状态
|
|
|
WaterMeterErrorDays waterMeterErrorDayUpdate = new WaterMeterErrorDays();
|
|
|
waterMeterErrorDayUpdate.setDeviceId(deviceId);
|