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; }
|
|
}
|
}
|