|
|
@@ -45,8 +45,8 @@ public class GzhReplyVideoRefreshJob {
|
|
|
@Autowired
|
|
|
DeepSeekApiService deepSeekApiService;
|
|
|
|
|
|
- @ApolloJsonValue("${gzh.reply.video.refresh.job.wxIds:[]}")
|
|
|
- private List<String> wxIds;
|
|
|
+ @ApolloJsonValue("${gzh.reply.video.refresh.job.filter.wxIds:[]}")
|
|
|
+ private List<String> filterWxIds;
|
|
|
@Value("${gzh.reply.video.refresh.job.topNum:2}")
|
|
|
private Integer topNum;
|
|
|
|
|
|
@@ -110,7 +110,7 @@ public class GzhReplyVideoRefreshJob {
|
|
|
private void replaceGZHReplyVideo(String wxId, List<AdPutCreativeComponentCostData> costDataList,
|
|
|
Map<String, GhDetail> ghDetailMap,
|
|
|
Map<String, String> accountMap) {
|
|
|
- if (!wxIds.contains(wxId)) {
|
|
|
+ if (filterWxIds.contains(wxId)) {
|
|
|
return;
|
|
|
}
|
|
|
String accountName = accountMap.get(wxId);
|