using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gs.WeightIqc.ToolBox
{
///
/// 返回的外围结构
///
///
public class ReturnModel
{
///
/// Default = -100默认, Unauthorized = -101非法调用, Exception = -102系统代码异常, Success
/// = 1成功
///
public int rtnCode { set; get; }
public T rtnData { set; get; }
public string rtnMsg { get; set; }
}
///
/// 返回的分页节点
///
public class PageListModel
{
///
/// 每页大小
///
public int everyPageSize;
///
/// 扩展用,列表
///
public List extendList;
///
/// 扩展用,单文本,比如金额合计等其它项目
///
public string extendText;
///
/// 总页数
///
public int pages;
///
/// 总记录数
///
public int total;
///
/// 列表
///
public DataTable list { get; set; }
}
}