You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DSWMS/开发版dev/Vue.NetCore/Vue.Net/VOL.Entity/AttributeManager/PermissionTableAttribute.cs

13 lines
287 B
C#

using System;
namespace VOL.Entity.AttributeManager
{
public class PermissionTableAttribute : Attribute
{
/// <summary>
/// 需要控制权限的表名与Sys_Menu表的表名必须一致
/// </summary>
public string Name { get; set; }
}
}