首页>代码>大嘴首发J2EE框架,Bigmouth-framework你值得拥有!>/bigmouth/bigmouth-framework/trunk/src/main/java/org/bigmouth/framework/core/ResponseData.java
package org.bigmouth.framework.core;

import java.io.Serializable;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class ResponseData implements Serializable {

    private static final long serialVersionUID = -9075429404577590761L;

    public final static int SUCCEED = 0;

    public final static int FAILED = -1;

    @Expose
    @SerializedName(value = "Flag")
    private int resultCode;
    @Expose
    @SerializedName(value = "Message")
    private String message;
    @Expose
    @SerializedName(value = "Data")
    private Object data;

    public ResponseData() {
    }

    public ResponseData(Object data) {
        this(SUCCEED, "", data);
    }

    public ResponseData(int resultCode, String message, Object data) {
        this.resultCode = resultCode;
        this.message = message;
        this.data = null == data ? new Object() : data;
    }

    public int getResultCode() {
        return resultCode;
    }

    public void setResultCode(int resultCode) {
        this.resultCode = resultCode;
    }

    public String getMessage() {
        return message;
    }

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

    public Object getData() {
        return data;
    }

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

}
最近下载更多
ssmss951  LV3 2023年2月27日
微信网友_5970838873509888  LV2 2022年5月24日
hwshws  LV9 2021年5月24日
gyd二蛋不是扁的  LV2 2019年12月11日
huangjiarui  LV11 2019年11月28日
luohaipeng  LV23 2019年11月19日
w2lijing2  LV10 2019年9月16日
等待or进取  LV1 2019年8月24日
低调人  LV38 2019年8月4日
1763157114  LV15 2019年7月8日
最近浏览更多
KWAN112234  LV1 2023年8月18日
ssmss951  LV3 2023年2月27日
微信网友_6248713511227392  LV11 2022年12月5日
微信网友_5970838873509888  LV2 2022年5月24日
你曾是少年啊 2022年2月16日
暂无贡献等级
刘亦菲9527  LV15 2021年12月1日
543666826  LV33 2021年11月18日
好的好的  LV8 2021年6月21日
zxfzxf  LV5 2021年6月21日
jackychen1012  LV2 2021年6月18日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友