📄 rolepopedommodel.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace QSEDUNET.MODEL.BaseInfo
{
public class RolePopedomModel
{
//定义私有变量
private int m_UserRole_Popedom_ID;
private int m_UserRole_ID;
private int m_UserPopedom_ID;
private string m_UserRole_Popedom_Msg;
//定义属性
public int UserRole_Popedom_ID
{
get { return m_UserRole_Popedom_ID; }
set { m_UserRole_Popedom_ID = value; }
}
public int UserRole_ID
{
get { return m_UserRole_ID; }
set { m_UserRole_ID = value; }
}
public int UserPopedom_ID
{
get { return m_UserPopedom_ID; }
set { m_UserPopedom_ID = value; }
}
public string UserRole_Popedom_Msg
{
get { return m_UserRole_Popedom_Msg; }
set { m_UserRole_Popedom_Msg = value; }
}
//构造函数
public RolePopedomModel()
{
this.m_UserRole_Popedom_ID = 0;
this.m_UserRole_ID = 0;
this.m_UserPopedom_ID = 0;
this.m_UserRole_Popedom_Msg = "";
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -