1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package org.jeecg.modules.lims.service;
|
| import org.jeecg.modules.lims.entity.LimsAppointmentAudit;
| import org.jeecg.modules.lims.entity.WxAccessToken;
|
| import java.util.Map;
|
| /**
| * 微信接口
| */
| public interface IWxService {
| //获取access_token
| WxAccessToken getWxAccessToken();
|
|
| void sendMessage(Map<String,String> params, LimsAppointmentAudit audit);
| void sendMessageToUser(Map<String,String> params, LimsAppointmentAudit audit);
|
| String getOpenId(String jsCode);
| }
|
|