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 bind(WechatCpBindVo wechatCpBindVo) throws WxErrorException; /** * 验证用户绑定 */ HttpResult verifyBind(WechatCpBindVo wechatCpBindVo) throws WxErrorException; }