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

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

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

public class TemplateMessageData {

    private String value;

    // 模板内容字体颜色,不填默认为黑色
    private String color;

    public TemplateMessageData() {
    }

    public TemplateMessageData(String value) {
        this.value = value;
        this.color = "#173177";
    }

    public TemplateMessageData(String value, String color) {
        this.value = value;
        this.color = color;
    }

    public String getValue() {
        return this.value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public String getColor() {
        return this.color;
    }

    public void setColor(String color) {
        this.color = color;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy