/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * 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; } = ""; } }