ResponseHead.java 955 Bytes
package com.cjs.site.model.sand;

import java.io.Serializable;

/**
 * Created by bruce on 2019-04-22 15:17
 */
public class ResponseHead implements Serializable{

    private static final long serialVersionUID = 240250866504894146L;

    private String version;
    private String respCode;
    private String respMsg;
    private String respTime;

    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
    }

    public String getRespCode() {
        return respCode;
    }

    public void setRespCode(String respCode) {
        this.respCode = respCode;
    }

    public String getRespMsg() {
        return respMsg;
    }

    public void setRespMsg(String respMsg) {
        this.respMsg = respMsg;
    }

    public String getRespTime() {
        return respTime;
    }

    public void setRespTime(String respTime) {
        this.respTime = respTime;
    }
}