usergrouprolemodel.cs
来自「高校 学籍管理、成绩、收费、网上教学」· CS 代码 · 共 47 行
CS
47 行
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 + =
减小字号Ctrl + -
显示快捷键?