Files
tnb.server/system/Tnb.Systems.Entitys/Dto/System/ModuleDataAuthorizeLink/ModuleDataAuthorizeLinkInfoOutput.cs
2023-03-13 15:00:34 +08:00

30 lines
671 B
C#
Raw Permalink 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.
namespace JNPF.Systems.Entitys.Dto.System.ModuleDataAuthorizeLink;
public class ModuleDataAuthorizeLinkInfoOutput
{
/// <summary>
/// 主键.
/// </summary>
public string id { get; set; }
/// <summary>
/// 数据源连接主键.
/// </summary>
public string linkId { get; set; }
/// <summary>
/// 表名.
/// </summary>
public string linkTables { get; set; }
/// <summary>
/// 权限类型(1:列表权限2数据权限3表单权限).
/// </summary>
public string dataType { get; set; }
/// <summary>
/// 菜单主键.
/// </summary>
public string moduleId { get; set; }
}