Commit b37a8bf6 by zzrdark

1.增加各模块查询参数

2.log日志详情imei参数增加
parent dc5f5e01
...@@ -87,4 +87,6 @@ public class DeviceLogDto { ...@@ -87,4 +87,6 @@ public class DeviceLogDto {
* 移动端日志文件标识符 * 移动端日志文件标识符
*/ */
private String logAcceptId; private String logAcceptId;
private String imei;
} }
...@@ -94,6 +94,7 @@ public class LogController { ...@@ -94,6 +94,7 @@ public class LogController {
deviceInfoDtos.forEach(deviceInfoDto -> { deviceInfoDtos.forEach(deviceInfoDto -> {
if (deviceLogDto.getDeviceId().equals(deviceInfoDto.getDeviceId()) ){ if (deviceLogDto.getDeviceId().equals(deviceInfoDto.getDeviceId()) ){
deviceLogDto.setSeriesNum(deviceInfoDto.getSeriesNum()); deviceLogDto.setSeriesNum(deviceInfoDto.getSeriesNum());
deviceLogDto.setImei(deviceInfoDto.getImei());
} }
}); });
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment