📄 userpower.cs
字号:
using System;
namespace CRM.Model
{
/// <summary>
/// 用户权限实体规范
/// </summary>
[Serializable]
public class UserPower
{
private bool _read;
private bool _add;
private bool _update;
private bool _delete;
public UserPower()
{}
public bool Read
{
get{return _read;}
set{_read=value;}
}
public bool Add
{
get{return _add;}
set{_add=value;}
}
public bool Update
{
get{return _update;}
set{_update=value;}
}
public bool Delete
{
get{return _delete;}
set{_delete=value;}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -