|
@@ -39,6 +39,11 @@ public class ContentServiceImpl implements ContentService {
|
|
|
|
|
|
private final String SINGLE_VIDEO_UID = "76862180";
|
|
|
|
|
|
+ private static final List<String> multipleVideoPlanIdList = new ArrayList<String>() {{
|
|
|
+ add("20250208065525959973866");
|
|
|
+ add("20250208111811026884434");
|
|
|
+ }};
|
|
|
+
|
|
|
@Autowired
|
|
|
private MatchVideoMapper matchVideoMapper;
|
|
|
|
|
@@ -299,8 +304,9 @@ public class ContentServiceImpl implements ContentService {
|
|
|
if (planAccount == null) {
|
|
|
return crawlerVideoList;
|
|
|
}
|
|
|
+
|
|
|
//临时逻辑 该计划返回正常数量小程序
|
|
|
- if ("20250208065525959973866".equals(planAccount.getPlanId())) {
|
|
|
+ if (multipleVideoPlanIdList.contains(planAccount.getPlanId())) {
|
|
|
if (crawlerVideoList.size() > 3) {
|
|
|
return crawlerVideoList.subList(0, 3);
|
|
|
}
|