kongdeqiang
2024-03-18 ffa5f49a2bcb6311486d00777b3629538eb3e6f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.boying.service;
 
import java.util.Map;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName WXService.java
 * @Description TODO
 * @createTime 2023年09月11日 08:35:00
 */
public interface WXService {
 
    String getOpenIdByCode(String code);
 
    /**
     * 加签操作
     */
    Map<String,String> addSign(Map<String,Object> map);
}