using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HuizhongLibrary.Data
{
///
/// JSON对象
///
///
public class JsonModel
{
///
/// 数据集
///
public T DataSource { get; set; }
public T DataSource2 { get; set; }
///
/// 行数量
///
public int RowCount { get; set; }
public int RowCount2 { get; set; }
///
/// 错误信息
///
public string ErrorMsg { get; set; }
public int allnum { get; set; }
public JsonModel()
{
RowCount = 0;
ErrorMsg = "";
}
}
}