package com.jfinal.weixin.sdk.api; import com.jfinal.weixin.sdk.utils.JsonUtils; import java.io.Serializable; import java.util.HashMap; /** * 模板消息数据对象 * * @author L.cm * #date 2014-11-10 下午3:32:30 * #description 模板消息数据对象 */ public class TemplateData implements Serializable { private static final long serialVersionUID = 8038149984818112449L; private String touser; private String template_id; private String url; private TemplateItem data; public static TemplateData New() { return new TemplateData(); } private TemplateData() { this.data = new TemplateItem(); } public String getTouser() { return touser; } public TemplateData setTouser(String touser) { this.touser = touser; return this; } public String getTemplate_id() { return template_id; } public TemplateData setTemplate_id(String template_id) { this.template_id = template_id; return this; } public String getUrl() { return url; } public TemplateData setUrl(String url) { this.url = url; return this; } public TemplateItem getData() { return data; } public TemplateData add(String key, String value, String color){ data.put(key, new Item(value, color)); return this; } public TemplateData add(String key, String value){ data.put(key, new Item(value)); return this; } /** * 直接转化成jsonString * @return {String} */ public String build() { return JsonUtils.toJson(this); } public class TemplateItem extends HashMap { private static final long serialVersionUID = -3728490424738325020L; public TemplateItem() {} public TemplateItem(String key, Item item) { this.put(key, item); } } public class Item { private Object value; private String color; public Object getValue() { return value; } public void setValue(Object value) { this.value = value; } public String getColor() { return color; } public void setColor(String color) { this.color = color; } public Item(Object value) { this(value, "#999"); } public Item(Object value, String color) { this.value = value; this.color = color; } } }