| 
					
				 | 
			
			
				@@ -119,7 +119,9 @@ public class XunTask { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         JSONArray checkpointLogs = qdCommonService.getCheckpointLog(startTime, endTime); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         if (checkpointLogs != null && checkpointLogs.size() > 0) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             for (Object checkpointLog : checkpointLogs) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                JSONObject jsonObject = JSONUtil.parseObj(checkpointLog); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 TlInspectionLocationLog convert = Convert.convert(TlInspectionLocationLog.class, checkpointLog); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                convert.setCreateTime(DateUtil.date(jsonObject.getLong("createTime"))); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 tlInspectionLocationLogService.insertTlInspectionLocationLog(convert); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         } 
			 |