Commit cd48ff05a6f093c54dcfadd593580160858207a9
1 parent
e74dacd7
修改朋友圈点播视频到审核云改为免审
Showing
1 changed file
with
4 additions
and
0 deletions
src/main/java/com/cnlive/shenhe/serviceImpl/VideosServiceImpl.java
| ... | ... | @@ -432,6 +432,10 @@ public class VideosServiceImpl { |
| 432 | 432 | shenheType=2;//机审 |
| 433 | 433 | } |
| 434 | 434 | } |
| 435 | + //如果栏目是朋友圈 | |
| 436 | + if(CommonUtils.isNotEmpty(shyVideo.getCategory()) && shyVideo.getCategory().equals(CommonConst.CATEGORY_MOMENT)){ | |
| 437 | + shenheType=1;//免审 | |
| 438 | + } | |
| 435 | 439 | shyVideo.setShenhe_type(shenheType); |
| 436 | 440 | } |
| 437 | 441 | ... | ... |