/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/1/31 21:45:10
* Description: 暂无
***********************************************************************/
namespace CoreCms.Net.Model.FromBody
{
///
/// 后台查询报表综合提交参数
///
public class FMReports
{
///
/// 时间返回
///
public string date { get; set; }
///
/// 查询时间类型
///
public int section { get; set; } = 0;
//页码
public int page { get; set; } = 1;
///
/// 分页数量
///
public int limit { get; set; } = 5000;
///
/// 排名条件
///
public string filter { get; set; } = "";
///
/// 升降序 desc/asc
///
public string thesort { get; set; } = "";
}
}