All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zopen.wechat.mp.dto.message.template.TemplateMessage Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.zopen.wechat.mp.dto.message.template;

import java.util.Map;

public class TemplateMessage {

    // * 接收者openid
    private String touser;

    // * 模板ID
    private String template_id;

    // 模板跳转链接(海外帐号没有跳转能力)
    private String url;

    // * 模板数据
    private Map data;

    public TemplateMessage() {
    }

    public TemplateMessage(String touser, String template_id, String url, Map data) {
        this.touser = touser;
        this.template_id = template_id;
        this.url = url;
        this.data = data;
    }

    public String getTouser() {
        return this.touser;
    }

    public void setTouser(String touser) {
        this.touser = touser;
    }

    public String getTemplate_id() {
        return this.template_id;
    }

    public void setTemplate_id(String template_id) {
        this.template_id = template_id;
    }

    public String getUrl() {
        return this.url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public Map getData() {
        return this.data;
    }

    public void setData(Map data) {
        this.data = data;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy