com.zopen.wechat.mp.dto.message.template.TemplateMessageData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zopen-ato-starter Show documentation
Show all versions of zopen-ato-starter Show documentation
Alibaba Tencent And Others For Spring Boot.
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;
}
}