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

com.riversoft.weixin.pay.payment.wrapper.BillRequestWrapper Maven / Gradle / Ivy

The newest version!
package com.riversoft.weixin.pay.payment.wrapper;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * @author borball on 1/13/2017.
 */
public class BillRequestWrapper extends BaseSettings {

    @JsonProperty("bill_date")
    private String date;

    @JsonProperty("bill_type")
    private String type;

    public String getDate() {
        return date;
    }

    public void setDate(String date) {
        this.date = date;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy