using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common
{
///
/// 请求服务端使用
///
/// 可以是class也可以是ArrayList等
public class CommonPage
{
///
/// 对象
///
public T param { get; set; }
///
/// 对象集合
///
public List paramList { get; set; }
///
/// arrayList对象集合
///
public ArrayList paramArray { get; set; }
///
/// 当前页
///
public int pageNum { get; set; }
///
/// 一页多少条数据
///
public int pageSize { get; set; }
///
/// 开始时间
///
public string startTime { get; set; }
///
/// 结束时间
///
public string endTime { get; set; }
///
/// 开始时间
///
public string startTime2 { get; set; }
///
/// 结束时间
///
public string endTime2 { get; set; }
///
/// string类型的参数1
///
public string memo1 { get; set; }
///
/// string类型的参数2
///
public string memo2 { get; set; }
///
/// string类型的参数3
///
public string memo3 { get; set; }
///
/// 排序字段+排序类型
///
public string sortField { get; set; }
}
}