|
@@ -54,21 +54,21 @@ public class QueryInfluxdbDataServiceImpl extends AbstractCrudService<QueryInflu
|
|
|
private MqttOutConfig.MqttGateway mqttGateway;
|
|
|
|
|
|
@Override
|
|
|
- public Map<String,Object> deviceControl(String productCode, String deviceId, String commandStr){
|
|
|
+ public Map<String,Object> deviceControl(String productCode, String deviceId, String commandStr,Integer tenantId){
|
|
|
Map<String,Object> rec_map = new HashMap<>();
|
|
|
|
|
|
+
|
|
|
//存储下发设备控制命令到数据库表中
|
|
|
DmpDeviceCommand command = new DmpDeviceCommand();
|
|
|
command.setProductCode(productCode);
|
|
|
command.setDeviceId(deviceId);
|
|
|
command.setCommandContent(commandStr);
|
|
|
- command.setCreatedBy(SecurityUtils.getUsername());
|
|
|
command.setCreatedTime(LocalDateTime.now());
|
|
|
// if (Objects.nonNull(SecurityUtils.getLoginUser().getSysUser().getDeptId())){
|
|
|
// command.setDeptId(SecurityUtils.getLoginUser().getSysUser().getDeptId().intValue());
|
|
|
// }
|
|
|
|
|
|
- command.setTenantId(SecurityUtils.getTenantId());
|
|
|
+ command.setTenantId(tenantId);
|
|
|
dmpDeviceCommandService.save(command);
|
|
|
int commandId = command.getId();
|
|
|
|