using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Lskj.Interface.Api
{
public class BaseResponse
{
///
/// 是否成功
///
public bool success { get; set; }
///
/// 文字信息
///
public string msg { get; set; }
///
/// 数据总数
///
public int tot { get; set; }
///
/// 返回的主数据
///
public object data { get; set; }
///
/// 如有其它数据
///
public object other { get; set; }
///
/// json编码后的字符串
///
public string EncodedResult { get; set; }
///
/// json编码后的字符串
///
public bool WriteResponse = true;
}
}