?? usergrouprolemodel.cs
字號:
using System;
using System.Collections.Generic;
using System.Text;
namespace QSEDUNET.MODEL.BaseInfo
{
public class UserGroupRoleModel
{
//定義私有變量
private int m_UserGroup_UserRole_ID;
private int m_UserGroup_ID;
private int m_UserRole_ID;
private string m_UserGroup_Role_MSG;
//定義屬性
public int UserGroup_UserRole_ID
{
get { return m_UserGroup_UserRole_ID; }
set { m_UserGroup_UserRole_ID = value; }
}
public int UserGroup_ID
{
get { return m_UserGroup_ID; }
set { m_UserGroup_ID = value; }
}
public int UserRole_ID
{
get { return m_UserRole_ID; }
set { m_UserRole_ID = value; }
}
public string UserGroup_Role_MSG
{
get { return m_UserGroup_Role_MSG; }
set { m_UserGroup_Role_MSG = value; }
}
//構造函數(shù)
public UserGroupRoleModel()
{
this.m_UserGroup_UserRole_ID = 0;
this.m_UserGroup_ID = 0;
this.m_UserRole_ID = 0;
this.m_UserGroup_Role_MSG = "";
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -