| 1234567891011121314151617181920212223 |
- package com.ydtech.modules.admin.service;
- import com.fasterxml.jackson.core.JsonProcessingException;
- public interface WechatCustomerService {
- /**
- * 配置微信客服回调信息
- *
- * @param msgSignature
- * @param timestamp 时间戳
- * @param nonce
- * @param echoStr 加密后的参数
- * @return 校验参数
- */
- String customerCallback(String msgSignature, String timestamp, String nonce, String echoStr);
- /**
- * 回调事件
- * @param wechatEncrypt
- */
- void callbackSendMsgOnEvent(String wechatEncrypt) throws JsonProcessingException;
- }
|