|  | @@ -196,6 +196,7 @@ public class VideoPoolAuditService {
 | 
											
												
													
														|  |                      json.put("id", obj.getContentTraceId());
 |  |                      json.put("id", obj.getContentTraceId());
 | 
											
												
													
														|  |                      json.put("timestamp", now + (120 * 60 * 1000));
 |  |                      json.put("timestamp", now + (120 * 60 * 1000));
 | 
											
												
													
														|  |                      redisTemplate.opsForList().rightPush(inAuditListRedisKey, json.toJSONString());
 |  |                      redisTemplate.opsForList().rightPush(inAuditListRedisKey, json.toJSONString());
 | 
											
												
													
														|  | 
 |  | +                    redisTemplate.expire(inAuditListRedisKey, 12, TimeUnit.HOURS);
 | 
											
												
													
														|  |                  }
 |  |                  }
 | 
											
												
													
														|  |                  String auditAccountListKey = "video-pool-audit-account-list-" + dateStr;
 |  |                  String auditAccountListKey = "video-pool-audit-account-list-" + dateStr;
 | 
											
												
													
														|  |                  redisTemplate.opsForSet().add(auditAccountListKey, param.getAuditAccountName());
 |  |                  redisTemplate.opsForSet().add(auditAccountListKey, param.getAuditAccountName());
 | 
											
										
											
												
													
														|  | @@ -400,4 +401,9 @@ public class VideoPoolAuditService {
 | 
											
												
													
														|  |          result.setWaitingAuditCount(waitingAuditCount);
 |  |          result.setWaitingAuditCount(waitingAuditCount);
 | 
											
												
													
														|  |          return result;
 |  |          return result;
 | 
											
												
													
														|  |      }
 |  |      }
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  | 
 |  | +    public void getOff(VideoPoolAuditDataParam param) {
 | 
											
												
													
														|  | 
 |  | +        String inAuditListRedisKey = "video-pool-in-audit-list-" + param.getAuditAccountName();
 | 
											
												
													
														|  | 
 |  | +        redisTemplate.delete(inAuditListRedisKey);
 | 
											
												
													
														|  | 
 |  | +    }
 | 
											
												
													
														|  |  }
 |  |  }
 |