using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.System.AdvancedQuery
{
///
/// 高级查询创建输入.
///
[SuppressSniffer]
public class AdvancedQuerySchemeCrInput
{
///
/// 方案名称.
///
public string fullName { get; set; }
///
/// 匹配逻辑.
///
public string matchLogic { get; set; }
///
/// 条件规则Json.
///
public string conditionJson { get; set; }
///
/// 菜单主键.
///
public string moduleId { get; set; }
///
/// 所属用户.
///
public string creatorUserId { get; set; }
}
}