username@email.com
2024-10-29 3f91a6737fc06b45461ce11eae5660cbbf766f7e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/***********************************************************************
 *            Project: baifenBinfa
 *        ProjectName: 百分兵法管理系统                               
 *                Web: http://chuanyin.com                     
 *             Author:                                        
 *              Email:                               
 *         CreateTime: 202403/02   
 *        Description: 暂无
 ***********************************************************************/
 
 
namespace CoreCms.Net.Model.FromBody
{
    /// <summary>
    ///     后台查询报表综合提交参数
    /// </summary>
    public class FMReports
    {
        /// <summary>
        ///     时间返回
        /// </summary>
        public string date { get; set; }
 
        /// <summary>
        ///     查询时间类型
        /// </summary>
        public int section { get; set; } = 0;
 
        //页码
        public int page { get; set; } = 1;
 
        /// <summary>
        ///     分页数量
        /// </summary>
        public int limit { get; set; } = 5000;
 
        /// <summary>
        ///     排名条件
        /// </summary>
        public string filter { get; set; } = "";
 
        /// <summary>
        ///     升降序 desc/asc
        /// </summary>
        public string thesort { get; set; } = "";
    }
}