namespace LJLib.Net.SPI.Com
{
public abstract class LJResponse
{
///
/// 错误代码
///
public string ErrCode { get; set; }
///
/// 错误信息
///
public string ErrMsg { get; set; }
///
/// 异常详细信息
///
public string DebugMsg { get; set; }
public string AppErrCode { get; set; }
public string AppErrMsg { get; set; }
}
}