
org.weixin4j.model.message.template.TemplateMessage Maven / Gradle / Ivy
The newest version!
/*
* 微信公众平台(JAVA) SDK
*
* Copyright (c) 2014, Ansitech Network Technology Co.,Ltd All rights reserved.
*
* http://www.weixin4j.org/
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.weixin4j.model.message.template;
import java.util.List;
/**
* 实体类对象,发送模板消息对象
*
* @author yangqisheng
* @since 0.1.0
*/
public class TemplateMessage implements java.io.Serializable {
/**
* 接收者openid,对应官方参数touser
*/
private String openid;
/**
* 模板ID
*/
private String templateId;
/**
* 模板跳转链接
*/
private String url;
/**
* 跳小程序所需数据,不需跳小程序可不用传该数据
*/
private Miniprogram miniprogram;
/**
* 模板数据
*/
private List data;
public String getOpenid() {
return openid;
}
public void setOpenid(String openid) {
this.openid = openid;
}
public String getTemplateId() {
return templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public Miniprogram getMiniprogram() {
return miniprogram;
}
public void setMiniprogram(Miniprogram miniprogram) {
this.miniprogram = miniprogram;
}
public List getData() {
return data;
}
public void setData(List data) {
this.data = data;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy