📄 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; }
}
//构造函数
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 + -