WechatCpService.java 500 B

12345678910111213141516171819202122
  1. package com.ydtech.modules.admin.service;
  2. import com.ydtech.core.page.HttpResult;
  3. import com.ydtech.modules.admin.model.vo.WechatCpBindVo;
  4. import me.chanjar.weixin.common.error.WxErrorException;
  5. public interface WechatCpService {
  6. /**
  7. * 绑定企业微信
  8. */
  9. HttpResult<Object> bind(WechatCpBindVo wechatCpBindVo) throws WxErrorException;
  10. /**
  11. * 验证用户绑定
  12. */
  13. HttpResult<Object> verifyBind(WechatCpBindVo wechatCpBindVo) throws WxErrorException;
  14. }