package com.wgcloud.dto;
|
|
import java.io.Serializable;
|
|
/**
|
* @version v3.3
|
* @ClassName:MessageDto.java
|
* @author: http://www.wgstart.com
|
* @date: 2021年5月24日
|
* @Description: 数据开放接口返回,报文结构类
|
* @Copyright: 2019-2021 wgcloud. All rights reserved.
|
*/
|
public class ResDataDto implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = -2913111613773445949L;
|
|
//0成功,1错误
|
private String code;
|
|
//消息
|
private String msg;
|
|
//数据
|
private Object data;
|
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getMsg() {
|
return msg;
|
}
|
|
public void setMsg(String msg) {
|
this.msg = msg;
|
}
|
|
public Object getData() {
|
return data;
|
}
|
|
public void setData(Object data) {
|
this.data = data;
|
}
|
}
|