添加项目文件。

This commit is contained in:
2023-03-13 15:00:34 +08:00
parent 42bf06ca3e
commit 1d73df3235
1205 changed files with 185078 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
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; }
}