12345678910111213141516171819 |
- package com.tzld.piaoquan.wecom.service;
- import com.tzld.piaoquan.wecom.common.base.CommonResponse;
- import com.tzld.piaoquan.wecom.model.po.MessageAttachment;
- import com.tzld.piaoquan.wecom.model.po.Staff;
- import com.tzld.piaoquan.wecom.model.vo.GuaranteedParam;
- import java.util.List;
- public interface MessageAttachmentService {
- void addMiniProgram(List<MessageAttachment> messageAttachmentList);
- CommonResponse<Void> createGuaranteedMiniProgram(GuaranteedParam guaranteedParam);
- String getPicMediaId(String cover, Long subjectId);
- String getPage(Staff staff, Long videoId);
- }
|