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