Commit 9050c3cd by 杨伟程

坐标返回设备id

parent 3451132e
......@@ -369,10 +369,14 @@ public class PlatElderDayReportDayServiceImpl implements PlatElderDayReportDaySe
vo.setDistance(i.getProperties().getDistance());
vo.setAngle(i.getProperties().getAngle());
vo.setDeviceId(e.getId());
vo.setOriDeviceId(e.getOriDeviceId());
return vo;
})
);
});
return voList;
......
......@@ -8,6 +8,12 @@ import java.math.BigDecimal;
@Data
public class PlatElderCoordinateVO {
@ApiModelProperty(value = "设备ID")
private String deviceId;
@ApiModelProperty(value = "原始设备ID")
private String oriDeviceId;
@ApiModelProperty("x")
private BigDecimal x;
......
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 sign in to comment