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

com.founder.ecrx.vopackage.base.HOSResultDTO Maven / Gradle / Ivy

There is a newer version: 3.6.1.9
Show newest version
package com.founder.ecrx.vopackage.base;

import java.io.Serializable;

public class HOSResultDTO implements Serializable {
    private Integer code; //响应状态码
    private String message; //响应异常信息
    private String type;//type 类型 String
    private T data;//encData 加密数据 String(max) N

    public Integer getCode() {
        return code;
    }

    public void setCode(Integer code) {
        this.code = code;
    }

    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }

    public String getType() {
        return type;
    }

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

    public T getData() {
        return data;
    }

    public void setData(T data) {
        this.data = data;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy