Files
tnb.server/system/Tnb.Systems.Entitys/Entity/System/AdvancedQuerySchemeEntity.cs
2024-04-23 10:16:16 +08:00

62 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Systems.Entitys.System;
/// <summary>
/// 高级查询方案
/// 版 本V3.4
/// 版 权拓通智联科技有限公司http://www.tuotong-tech.com
/// 日 期2022-06-06.
/// </summary>
[SugarTable("BASE_ADVANCEDQUERYSCHEME")]
public class AdvancedQuerySchemeEntity : EntityBase<string>
{
/// <summary>
/// 方案名称.
/// </summary>
[SugarColumn(ColumnName = "F_FULLNAME")]
public string FullName { get; set; }
/// <summary>
/// 匹配逻辑.
/// </summary>
[SugarColumn(ColumnName = "F_MATCHLOGIC")]
public string MatchLogic { get; set; }
/// <summary>
/// 条件规则Json.
/// </summary>
[SugarColumn(ColumnName = "F_CONDITIONJSON")]
public string ConditionJson { get; set; }
/// <summary>
/// 菜单主键.
/// </summary>
[SugarColumn(ColumnName = "F_MODULEID")]
public string ModuleId { get; set; }
/// <summary>
/// 获取或设置 创建时间.
/// </summary>
[SugarColumn(ColumnName = "F_CREATORTIME")]
public DateTime? CreatorTime { get; set; }
/// <summary>
/// 获取或设置 所属用户.
/// </summary>
[SugarColumn(ColumnName = "F_CREATORUSERID")]
public string CreatorUserId { get; set; }
/// <summary>
/// 获取或设置 删除标志.
/// </summary>
[SugarColumn(ColumnName = "F_DELETEMARK")]
public int? DeleteMark { get; set; }
/// <summary>
/// 获取或设置 删除时间.
/// </summary>
[SugarColumn(ColumnName = "F_DELETETIME")]
public DateTime? DeleteTime { get; set; }
}