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

40 lines
1.0 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.Const;
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Systems.Entitys.System;
/// <summary>
/// 数据权限连接管理
/// 版 本V3.0.0
/// 版 权拓通智联科技有限公司http://www.tuotong-tech.com
/// 日 期2017.09.20.
/// </summary>
[SugarTable("BASE_MODULEDATAAUTHORIZELINK")]
[Tenant(ClaimConst.TENANTID)]
public class ModuleDataAuthorizeLinkEntity : EntityBase<string>
{
/// <summary>
/// 数据源连接主键.
/// </summary>
[SugarColumn(ColumnName = "F_LINKID")]
public string LinkId { get; set; }
/// <summary>
/// 表名.
/// </summary>
[SugarColumn(ColumnName = "F_LINKTABLES")]
public string LinkTables { get; set; }
/// <summary>
/// 权限类型(1:列表权限2数据权限3表单权限).
/// </summary>
[SugarColumn(ColumnName = "F_TYPE")]
public string Type { get; set; }
/// <summary>
/// 菜单主键.
/// </summary>
[SugarColumn(ColumnName = "F_MODULEID")]
public string ModuleId { get; set; }
}