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