You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
287 B

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