招聘后台
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.
 
 

18 lines
500 B

namespace Znyc.Recruitment.Admin.Commons.Entitys
{
/// <summary>
/// 定义数据权限的更新,删除状态
/// </summary>
public interface IDataAuthEnabled
{
/// <summary>
/// 获取或设置 是否可更新的数据权限状态
/// </summary>
bool Updatable { get; set; }
/// <summary>
/// 获取或设置 是否可删除的数据权限状态
/// </summary>
bool Deletable { get; set; }
}
}