Commit 1a32c1251bb7a5fb24c6a606171c45ee12bbf533

Authored by 徐近程
1 parent fb729edd

update

src/main/java/com/cnlive/shenhe/api/YiDunControllerApi.java
@@ -85,6 +85,7 @@ public class YiDunControllerApi { @@ -85,6 +85,7 @@ public class YiDunControllerApi {
85 shyYidun.setId(dataId); 85 shyYidun.setId(dataId);
86 shyYidun.setCreate_time(new Date()); 86 shyYidun.setCreate_time(new Date());
87 yiDunServiceImpl.addYiDunMsg(shyYidun); 87 yiDunServiceImpl.addYiDunMsg(shyYidun);
  88 +
88 } 89 }
89 90
90 } 91 }
src/main/java/com/cnlive/shenhe/job/ContentJob.java
@@ -74,6 +74,7 @@ public class ContentJob { @@ -74,6 +74,7 @@ public class ContentJob {
74 if (shyYidun1 == null) { 74 if (shyYidun1 == null) {
75 logger.info("定时发送易盾检测的content_id:" + content.getId()); 75 logger.info("定时发送易盾检测的content_id:" + content.getId());
76 contentService.contentFilter(content); 76 contentService.contentFilter(content);
  77 +
77 } 78 }
78 } 79 }
79 } 80 }
src/main/java/com/cnlive/shenhe/job/VideosJob.java
@@ -66,6 +66,7 @@ public class VideosJob { @@ -66,6 +66,7 @@ public class VideosJob {
66 logger.info("定时向易盾发送检测视频的videos_id:" + video.getId()); 66 logger.info("定时向易盾发送检测视频的videos_id:" + video.getId());
67 //易盾图片过滤 67 //易盾图片过滤
68 videosService.videoFilter(video.getId()); 68 videosService.videoFilter(video.getId());
  69 +
69 } 70 }
70 } 71 }
71 } 72 }
src/main/java/com/cnlive/shenhe/mapper/ShyYidunMapper.java
@@ -4,4 +4,5 @@ import com.cnlive.shenhe.entity.ShyYidun; @@ -4,4 +4,5 @@ import com.cnlive.shenhe.entity.ShyYidun;
4 import tk.mybatis.mapper.common.Mapper; 4 import tk.mybatis.mapper.common.Mapper;
5 5
6 public interface ShyYidunMapper extends Mapper<ShyYidun> { 6 public interface ShyYidunMapper extends Mapper<ShyYidun> {
  7 +
7 } 8 }
8 \ No newline at end of file 9 \ No newline at end of file
src/main/java/com/cnlive/shenhe/serviceImpl/YiDunServiceImpl.java
@@ -19,6 +19,7 @@ public class YiDunServiceImpl { @@ -19,6 +19,7 @@ public class YiDunServiceImpl {
19 19
20 private static Logger logger = LoggerFactory.getLogger(YiDunServiceImpl.class); 20 private static Logger logger = LoggerFactory.getLogger(YiDunServiceImpl.class);
21 21
  22 +
22 @Autowired 23 @Autowired
23 ShyYidunMapper shyYidunMapper; 24 ShyYidunMapper shyYidunMapper;
24 25