This commit is contained in:
2023-05-31 10:19:05 +08:00
parent 1b65a7a9e5
commit 9c621c75cd
238 changed files with 9905 additions and 4034 deletions

View File

@@ -14,9 +14,56 @@ public class IndexSearchFieldModel : IndexEachConfigBase
/// </summary>
public string value { get; set; }
//modified by PhilPan
///// <summary>
///// 查询类型.
///// </summary>
//public int? searchType { get; set; }
/// <summary>
/// 查询类型.
/// </summary>
public int? searchType { get; set; }
}
/// <summary>
/// 数据过滤集合.
/// 数据过滤条件.
/// </summary>
public class RuleFieldModel : IndexEachConfigBase
{
/// <summary>
/// 字段过滤值.
/// </summary>
public object fieldValue { get; set; }
/// <summary>
/// 字段类型.
/// </summary>
public string fieldType { get; set; }
/// <summary>
/// 字段值类型.
/// </summary>
public string fieldValueType { get; set; }
/// <summary>
/// .
/// </summary>
public string fieldLabel { get; set; }
/// <summary>
/// 逻辑名.
/// </summary>
public string logicName { get; set; }
/// <summary>
/// 字段.
/// </summary>
public string field { get; set; }
/// <summary>
/// 条件符号标识.
/// </summary>
public string symbol { get; set; }
/// <summary>
/// 逻辑: 并且、或者.
/// </summary>
public string logic { get; set; }
}