MessageAttachmentService.java 601 B

12345678910111213141516171819
  1. package com.tzld.piaoquan.wecom.service;
  2. import com.tzld.piaoquan.wecom.common.base.CommonResponse;
  3. import com.tzld.piaoquan.wecom.model.po.MessageAttachment;
  4. import com.tzld.piaoquan.wecom.model.po.Staff;
  5. import com.tzld.piaoquan.wecom.model.vo.GuaranteedParam;
  6. import java.util.List;
  7. public interface MessageAttachmentService {
  8. void addMiniProgram(List<MessageAttachment> messageAttachmentList);
  9. CommonResponse<Void> createGuaranteedMiniProgram(GuaranteedParam guaranteedParam);
  10. String getPicMediaId(String cover, Long subjectId);
  11. String getPage(Staff staff, Long videoId);
  12. }