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