|
@ -133,8 +133,8 @@ public class PatientDeviceService extends BaseJpaService<DevicePatientDevice, Pa
|
|
|
* 获取烟雾 燃气浓度
|
|
|
* @param patient
|
|
|
*/
|
|
|
public JSONObject concentrationMessage(String patient){
|
|
|
JSONObject result = new JSONObject();
|
|
|
public com.alibaba.fastjson.JSONObject concentrationMessage(String patient){
|
|
|
com.alibaba.fastjson.JSONObject result = new com.alibaba.fastjson.JSONObject();
|
|
|
String sql = "SELECT CONCAT(r.value,r.unit) value from wlyy_patient_device pd,base_device_health_index r " +
|
|
|
"WHERE pd.device_sn = r.device_sn and pd.`user` = '"+patient+"' ";
|
|
|
|
|
@ -162,13 +162,14 @@ public class PatientDeviceService extends BaseJpaService<DevicePatientDevice, Pa
|
|
|
* 环境信息
|
|
|
* @return
|
|
|
*/
|
|
|
public JSONObject envMessage(String patient){
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
|
public com.alibaba.fastjson.JSONObject envMessage(String patient){
|
|
|
com.alibaba.fastjson.JSONObject jsonObject = new com.alibaba.fastjson.JSONObject();
|
|
|
jsonObject.put("concentration",concentrationMessage(patient));
|
|
|
jsonObject.put("weather",emergencyAssistanceService.getBaiduWeather());
|
|
|
return jsonObject;
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 燃气浓度
|
|
|
* @param patient
|