| 12345678910111213141516171819202122 |
- package com.ydtech.modules.admin.service;
- import com.ydtech.core.page.HttpResult;
- import com.ydtech.modules.admin.model.vo.WechatCpBindVo;
- import me.chanjar.weixin.common.error.WxErrorException;
- public interface WechatCpService {
- /**
- * 绑定企业微信
- */
- HttpResult<Object> bind(WechatCpBindVo wechatCpBindVo) throws WxErrorException;
- /**
- * 验证用户绑定
- */
- HttpResult<Object> verifyBind(WechatCpBindVo wechatCpBindVo) throws WxErrorException;
- }
|