@@ -27,6 +27,11 @@ public class WxSendMessageParam { | |||
*/ | |||
private String page; | |||
/** | |||
* 版本控制 | |||
*/ | |||
private String miniprogram_state; | |||
/** | |||
* 填充信息 | |||
*/ |
@@ -179,6 +179,7 @@ public class WxServiceImpl implements IWxService { | |||
String url = "https://api.weixin.qq.com/cgi-bin/message/subscribe/send?access_token=" + getAccessToken(); | |||
WxSendMessageParam param = new WxSendMessageParam(); | |||
param.setPage("/package_question/pages/taskList/taskList"); | |||
param.setMiniprogram_state("trial"); | |||
param.setTouser(openId); | |||
param.setTemplate_id(CommonConfig.templateId); | |||
Map<String, TemplateMinDto> data = new HashMap<>(3); |