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

com.founder.core.param.FounderRequestData Maven / Gradle / Ivy

There is a newer version: 3.2.3.2
Show newest version
package com.founder.core.param;

import java.io.Serializable;

/**
 * @author zhunian
 * @create 2018-02-01 23:37
 **/
public class FounderRequestData implements Serializable {
    private String responseData;
    private String result;

    public String getResponseData() {
        return responseData;
    }

    public void setResponseData(String responseData) {
        this.responseData = responseData;
    }

    public String getResult() {
        return result;
    }

    public void setResult(String result) {
        this.result = result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy