MessageAttachmentService.java 439 B

1234567891011121314151617
  1. package com.tzld.piaoquan.wecom.service;
  2. import com.tzld.piaoquan.wecom.model.po.MessageAttachment;
  3. import com.tzld.piaoquan.wecom.model.po.Staff;
  4. import java.util.List;
  5. public interface MessageAttachmentService {
  6. void addMiniprogram(List<MessageAttachment> messageAttachmentList);
  7. void createGuaranteedMiniprogram(List<Long> videos);
  8. String getPicMediaId(String cover);
  9. String getPage(Staff staff, Long videoId);
  10. }