1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package com.java110.job.msgNotify;
|
| /**
| * 微信模板处理类
| */
| public interface IWechatTemplate {
|
|
| /**
| * 获取模板ID
| * @param communityId 小区ID
| * @param templateIdShort 模板库中模板的编号
| * @param title 模板标题
| * @return
| */
| String getTemplateId(String communityId, String templateIdShort,String title,String[] keys);
|
| /**
| * 获取 accessToken
| *
| * @param communityId
| * @return
| */
| String getAccessToken(String communityId);
|
| String getAppId(String communityId);
| }
|
|