|
@ -370,6 +370,17 @@ public class PatientDeviceController extends BaseController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@ApiOperation("获取getAqgDeviceInfo2定位数据")
|
|
|
@RequestMapping(value = "getAqgDeviceInfo2",method = RequestMethod.GET)
|
|
|
public String getAqgDeviceInfo2(@ApiParam(name = "deviceSn",value = "设备sn码")
|
|
|
@RequestParam(value = "deviceSn",required = true)String deviceSn){
|
|
|
try {
|
|
|
return write(200,"获取成功","data",patientDeviceService.getAqgDeviceInfo2(deviceSn));
|
|
|
}catch (Exception e){
|
|
|
return errorResult(e);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@ApiOperation("获取睡眠带设备信息")
|
|
|
@RequestMapping(value = "getSleepDeviceInfo",method = RequestMethod.GET)
|
|
|
public String getSleepDeviceInfo(@ApiParam(name = "deviceSn",value = "睡眠带MAC 去除符号:")
|