|
@ -608,4 +608,21 @@ public class PatientDeviceController extends BaseController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("获取烟雾/燃气浓度列表(居民端)")
|
|
|
|
@RequestMapping(value = "getSmokeOrGasList", method = RequestMethod.GET)
|
|
|
|
public String getSmokeOrGasList(@ApiParam(name = "deviceSn") @RequestParam(value = "deviceSn", required = true) String deviceSn,
|
|
|
|
@ApiParam(name = "day", value = "yyyy-MM-dd") @RequestParam(value = "day", required = false) String day) {
|
|
|
|
try {
|
|
|
|
//居民端登录鉴权
|
|
|
|
com.alibaba.fastjson.JSONObject jsonObject = new com.alibaba.fastjson.JSONObject();
|
|
|
|
jsonObject.put("patient",permissionService.getUID());
|
|
|
|
if (permissionService.noPermission(1, jsonObject)) {
|
|
|
|
return write(-1,"该操作没有权限");
|
|
|
|
}
|
|
|
|
return write(200,"获取成功","list", patientDeviceService.getSmokeOrGasList(deviceSn, day));
|
|
|
|
} catch (Exception e) {
|
|
|
|
return errorResult(e);
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|