using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 泛型分页列表
///
public class PageListOutput
{
///
/// 总条数
///
public int Total { get; set; }
///
/// 分页列表
///
public List List { get; set; }
}
}