WechatCpService.java 271 B

123456789101112
  1. package com.ghsc.partybuild.service.wechat;
  2. import me.chanjar.weixin.common.error.WxErrorException;
  3. /**
  4. * 企业微信
  5. */
  6. public interface WechatCpService {
  7. String getOAuthUrl(String redirectUrl);
  8. String getWxCpUserId(String code) throws WxErrorException;
  9. }