|  |  | @ -11,6 +11,7 @@ import com.storeroom.modules.storeroom3d.service.dto.RealTimeDataDto; | 
			
		
	
		
			
				
					|  |  |  | import com.storeroom.utils.FastjsonUtils; | 
			
		
	
		
			
				
					|  |  |  | import com.storeroom.utils.HttpUtils; | 
			
		
	
		
			
				
					|  |  |  | import com.storeroom.utils.RedisUtils; | 
			
		
	
		
			
				
					|  |  |  | import com.storeroom.utils.TimestampTool; | 
			
		
	
		
			
				
					|  |  |  | import lombok.RequiredArgsConstructor; | 
			
		
	
		
			
				
					|  |  |  | import lombok.SneakyThrows; | 
			
		
	
		
			
				
					|  |  |  | import okhttp3.*; | 
			
		
	
	
		
			
				
					|  |  | @ -127,8 +128,7 @@ public class ThirdApiServiceImpl implements ThirdApiService { | 
			
		
	
		
			
				
					|  |  |  |                             getCurAlarmDto.setArea_name(jsonObject.get("area_name") == null ? null : jsonObject.get("area_name").toString()); | 
			
		
	
		
			
				
					|  |  |  |                             getCurAlarmDto.setEvent_id(jsonObject.get("event_id") == null ? null : jsonObject.get("event_id").toString()); | 
			
		
	
		
			
				
					|  |  |  |                             getCurAlarmDto.setEvent_level_name(jsonObject.get("event_level_name") == null ? null : jsonObject.get("event_level_name").toString()); | 
			
		
	
		
			
				
					|  |  |  |                             Timestamp ts = Timestamp.valueOf(jsonObject.get("alarm_time") == null ? null : jsonObject.get("alarm_time").toString()); | 
			
		
	
		
			
				
					|  |  |  |                             getCurAlarmDto.setAlarm_time(ts); | 
			
		
	
		
			
				
					|  |  |  |                             getCurAlarmDto.setAlarm_time(TimestampTool.string2sqlTimestamp(jsonObject.get("alarm_time") == null ? null : jsonObject.get("alarm_time").toString())); | 
			
		
	
		
			
				
					|  |  |  |                             getCurAlarmDto.setCategory_name(jsonObject.get("category_name") == null ? null : jsonObject.get("category_name").toString()); | 
			
		
	
		
			
				
					|  |  |  |                             getCurAlarmDto.setAlarm_value_descript(jsonObject.get("alarm_value_descript") == null ? null : jsonObject.get("alarm_value_descript").toString()); | 
			
		
	
		
			
				
					|  |  |  |                             getCurAlarmDto.setDevice_name(jsonObject.get("device_name") == null ? null : jsonObject.get("device_name").toString()); | 
			
		
	
	
		
			
				
					|  |  | 
 |