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

com.lorne.weixin.pay.model.TemplateMsg Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
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