using SqlSugar;
namespace JNPF.Common.Models;
///
/// 高级查询模型.
///
public class SuperQueryModel
{
///
/// 匹配逻辑.
///
public string matchLogic { get; set; }
///
/// 条件JSON列.
///
public List conditionJson { get; set; }
}
///
/// 条件JSON.
///
public class Conditionjson
{
///
/// 字段.
///
public string field { get; set; }
///
/// 字段值.
///
public object fieldValue { get; set; }
///
/// 象征.
///
public string symbol { get; set; }
///
/// jnpfKey.
///
public string jnpfKey { get; set; }
///
/// 多选.
///
public bool multiple { get; set; }
}
///
/// 转换高级查询.
///
public class ConvertSuperQuery
{
///
/// where类型.
///
public WhereType whereType { get; set; }
///
/// jnpfKey.
///
public string jnpfKey { get; set; }
///
/// 字段.
///
public string field { get; set; }
///
/// 字段值.
///
public string fieldValue { get; set; }
///
/// 条件类型.
///
public ConditionalType conditionalType { get; set; }
///
/// 是否主条件.
///
public bool mainWhere { get; set; }
///
/// 象征.
///
public string symbol { get; set; }
}