|
@ -191,6 +191,7 @@ public class DeviceQrtzServiceImpl implements IDeviceQrtzService { |
|
|
DeviceQrtzFileEntity entity = new DeviceQrtzFileEntity(); |
|
|
DeviceQrtzFileEntity entity = new DeviceQrtzFileEntity(); |
|
|
QueryWrapper<WaylineFileEntity> queryWrapper = new QueryWrapper<WaylineFileEntity>().eq("wayline_id", waylineId); |
|
|
QueryWrapper<WaylineFileEntity> queryWrapper = new QueryWrapper<WaylineFileEntity>().eq("wayline_id", waylineId); |
|
|
WaylineFileEntity fileEntity = waylineFileMapper.selectOne(queryWrapper); |
|
|
WaylineFileEntity fileEntity = waylineFileMapper.selectOne(queryWrapper); |
|
|
|
|
|
entity.setDeviceSn(fileEntity.getDeviceSn()); |
|
|
entity.setQrtzId(qrtzId); |
|
|
entity.setQrtzId(qrtzId); |
|
|
entity.setWaylineId(waylineId); |
|
|
entity.setWaylineId(waylineId); |
|
|
entity.setWaylineName(fileEntity.getName()); |
|
|
entity.setWaylineName(fileEntity.getName()); |
|
@ -251,7 +252,7 @@ public class DeviceQrtzServiceImpl implements IDeviceQrtzService { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public DeviceQrtzFileEntity getDeviceQrtzFileEntity(Long id) { |
|
|
public DeviceQrtzFileEntity getDeviceQrtzFileEntity(String deviceSn) { |
|
|
return null; |
|
|
return null; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|