Commit fb8a001d by 徐高华

Merge branch 'feature/xgh/202506迭代' into 'developer'

素材

See merge request !3055
parents cde000d7 af54f707
...@@ -97,4 +97,6 @@ public interface MaterialApiService { ...@@ -97,4 +97,6 @@ public interface MaterialApiService {
//mediaType1群发 2朋友圈 //mediaType1群发 2朋友圈
public List<String> getImageMediaId(String wxEnterpriseId, List<ContentMaterialDTO> imageList, int mediaType) ; 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 { ...@@ -581,4 +581,13 @@ public class MaterialApiServiceImpl implements MaterialApiService {
} }
return list ; 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