WeixinMPService.java 507 B

123456789101112131415161718
  1. package com.kym.service.wechat;
  2. import jakarta.servlet.http.HttpServletRequest;
  3. import jakarta.servlet.http.HttpServletResponse;
  4. import me.chanjar.weixin.common.error.WxErrorException;
  5. import java.util.List;
  6. /**
  7. * 微信公众号服务
  8. *
  9. * @author skyline
  10. */
  11. public interface WeixinMPService {
  12. void handleWxMPNotify(HttpServletRequest request, HttpServletResponse response);
  13. void sendMPTemplateMessage(String mpOpenid, String templateTitle, List<String> dataList) throws WxErrorException;
  14. }