📄 roleattribute.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace com.egt.business
{
public class RoleAttribute
{
/*
* 编码人员:胡鹏飞
*
* 编码时间:2007-9-27
*
* 内容:角色属性类
*/
#region Model
private int _id;
private string _names = string.Empty;
/// <summary>
/// 标识
/// </summary>
public int id
{
set { _id = value; }
get { return _id; }
}
/// <summary>
/// 名称
/// </summary>
public string names
{
set { _names = value; }
get { return _names; }
}
#endregion Model
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -