com.lorne.weixin.pay.model.TemplateMsg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-api Show documentation
Show all versions of weixin-api Show documentation
weixin-api project for Spring Project
package com.lorne.weixin.pay.model;
/**
* Created by yuliang on 2017/2/9.
*/
public class TemplateMsg {
private String value;
private String color = "#173177";
public TemplateMsg(String value, String color) {
this.value = value;
this.color = color;
}
public TemplateMsg(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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy