package com.walker.push.wx;
|
|
import java.io.Serializable;
|
|
/**
|
* 微信模板发送数据类
|
* @author 时克英
|
* @date 2023-08-21
|
*/
|
public class MessageValue implements Serializable {
|
|
public MessageValue(){}
|
|
public MessageValue(String value){
|
this.value = value;
|
}
|
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
// public String getColor() {
|
// return color;
|
// }
|
// public void setColor(String color) {
|
// this.color = color;
|
// }
|
|
// @ApiModelProperty(value = "显示的文字内容", required = true)
|
private String value;
|
|
// @ApiModelProperty(value = "颜色")
|
// private String color = "#173177";
|
|
@Override
|
public String toString() {
|
return "MessageValue{" +
|
"value='" + value + '\'' +
|
'}';
|
}
|
}
|