ResultEntity.java
380 字节
package com.xdy.commonlibrary.entity;
/**
* @author 蒋洪波
* @file ResultEntity.java
* @brief 检查数据是否正常
* @date 2017/1/8
* Copyright (c) 2017
* All rights reserved.
*/
public class ResultEntity{
//返回码
public String code;
//返回信息
public String errorMessage;
//是否解析成功标识
public boolean isSuccess;
}