📄 roleinfo.cs
字号:
//============================================================
// Producnt name: BoBoARTS.CodeMad
// Version: 1.0
// Coded by: Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 2008-9-18 16:07:05
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace Office.Model
{
[Serializable()]
public class RoleInfo
{
private int roleId;
private string roleName = String.Empty;
private string roleDesc = String.Empty;
public RoleInfo() { }
public RoleInfo(int _roleid,String _rolename,String _roledesc)
{
this.roleId = _roleid;
this.roleName = _rolename;
this.roleDesc = _roledesc;
}
public int RoleId
{
get { return this.roleId; }
set { this.roleId = value; }
}
public string RoleName
{
get { return this.roleName; }
set { this.roleName = value; }
}
public string RoleDesc
{
get { return this.roleDesc; }
set { this.roleDesc = value; }
}
public override string ToString()
{
return this.RoleName;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -