123456789101112131415161718192021222324252627 |
- package com.hz.employmentsite.services.service;
- import com.hz.employmentsite.model.WxMessagetempsetting;
- import com.hz.employmentsite.model.WxMessagetempsettingField;
- import me.chanjar.weixin.common.error.WxErrorException;
- import java.io.UnsupportedEncodingException;
- import java.util.List;
- import java.util.Map;
- public interface WechatService {
- String getOAuthUrl(String redirectUrl);
- String getOpenId(String code) throws WxErrorException;
- boolean sendMsg(String openId, String sourceId, String url, String templateId, Map<String, String> sendData) throws Exception;
- List<WxMessagetempsetting> getWxMessagetempsettingList();
- List<WxMessagetempsettingField> getWxMessagetempFieldList(String templateNo);
- String getQrcodeUrl(String url, String userId) throws UnsupportedEncodingException;
- Boolean qrcodeVerify(String qrCodeId, String openId);
- }
|