using System;
using System.Collections.Generic;
namespace Gs.DevApp.Entity
{
///
/// 返回的外围结构
///
///
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 System.Data.DataTable list { get; set; }
///
/// 总页数
///
public int pages;
///
/// 总记录数
///
public int total;
///
/// 每页大小
///
public int everyPageSize;
///
/// 扩展用,单文本,比如金额合计等其它项目
///
public string extendText;
///
/// 扩展用,列表
///
public List extendList;
}
}