123456789101112131415 |
- package com.hz.employmentsite.services.service;
- import me.chanjar.weixin.common.error.WxErrorException;
- import java.util.Map;
- public interface WechatService {
- String getOAuthUrl(String state);
- Integer sentMsg(String toUserId, Map<String,String> sentData);
- String getOpenId(String code) throws WxErrorException;
- }
|