package com.matrix.component.tools; 
 | 
  
 | 
import java.util.Map; 
 | 
  
 | 
public class WxSubscribeDto { 
 | 
    /** 
 | 
     * 模板消息id 
 | 
     */ 
 | 
    private String template_id; 
 | 
    /** 
 | 
     * 用户openId 
 | 
     */ 
 | 
    private String touser; 
 | 
    /** 
 | 
     * URL置空,则在发送后,点击模板消息会进入一个空白页面(ios),或无法点击(android) 
 | 
     */ 
 | 
    private String page; 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 详细内容 
 | 
     */ 
 | 
    private Map<String, WxSubscribeValueDto> data; 
 | 
  
 | 
  
 | 
    public String getTemplate_id() { 
 | 
        return template_id; 
 | 
    } 
 | 
  
 | 
    public void setTemplate_id(String template_id) { 
 | 
        this.template_id = template_id; 
 | 
    } 
 | 
  
 | 
    public String getTouser() { 
 | 
        return touser; 
 | 
    } 
 | 
  
 | 
    public void setTouser(String touser) { 
 | 
        this.touser = touser; 
 | 
    } 
 | 
  
 | 
    public String getPage() { 
 | 
        return page; 
 | 
    } 
 | 
  
 | 
    public void setPage(String page) { 
 | 
        this.page = page; 
 | 
    } 
 | 
  
 | 
    public Map<String, WxSubscribeValueDto> getData() { 
 | 
        return data; 
 | 
    } 
 | 
  
 | 
    public void setData(Map<String, WxSubscribeValueDto> data) { 
 | 
        this.data = data; 
 | 
    } 
 | 
} 
 |