1234567891011121314151617 |
- package com.tzld.piaoquan.wecom.service;
- import com.tzld.piaoquan.wecom.model.po.MessageAttachment;
- import com.tzld.piaoquan.wecom.model.po.Staff;
- import java.util.List;
- public interface MessageAttachmentService {
- void addMiniprogram(List<MessageAttachment> messageAttachmentList);
- void createGuaranteedMiniprogram(List<Long> videos);
- String getPicMediaId(String cover);
- String getPage(Staff staff, Long videoId);
- }
|