Commit af54f707 by 徐高华

素材

parent 213c70c0
......@@ -97,4 +97,6 @@ public interface MaterialApiService {
//mediaType1群发 2朋友圈
public List<String> getImageMediaId(String wxEnterpriseId, List<ContentMaterialDTO> imageList, int mediaType) ;
void getImageMediaId(String wxEnterpriseId, List<String> idList) ;
}
......@@ -581,4 +581,13 @@ public class MaterialApiServiceImpl implements MaterialApiService {
}
return list ;
}
@Override
public void getImageMediaId(String wxEnterpriseId, List<String> idList) {
if(CollectionUtils.isNotEmpty(idList)) {
idList.forEach(materialId -> {
materialService.getHasChangeMadieMaterialById(materialId, 1);
}) ;
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment