schangxiang@126.com
2025-05-07 f73d8786777c7ebcf53a93bf46c2268892a28502
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
namespace CmsQueryExtensions.Extension
{
    /// <summary>
    /// 高级查询实体
    /// </summary>
    public class HighSearchModel
    {
        public string fieldName { get; set; }
 
        public string fieldValue { get; set; }
 
        /// <summary>
        /// 筛选模式
        /// </summary>
        public SearchFilterModeEnum filterMode { get; set; }
    }
 
    /// <summary>
    /// 高级日期范围查询实体
    /// </summary>
    public class HighSearchForDateTimeRangeModel
    {
        public string fieldName { get; set; }
 
        public string start_fieldValue { get; set; }
 
        public string end_fieldValue { get; set; }
 
    }
}