usergroupmodel.cs

来自「高校 学籍管理、成绩、收费、网上教学」· CS 代码 · 共 41 行

CS
41
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace QSEDUNET.MODEL.BaseInfo
{
	public class UserGroupModel
	{

		//定义私有变量
		private int m_UserGroup_ID;
		private string m_UserGroup_Name;
		private string m_UserGroup_Msg;

		//定义属性
		public int UserGroup_ID
		{
			get { return m_UserGroup_ID;}
			set { m_UserGroup_ID=value;}
		}
		public string UserGroup_Name
		{
			get { return m_UserGroup_Name;}
			set { m_UserGroup_Name=value;}
		}
		public string UserGroup_Msg
		{
			get { return m_UserGroup_Msg;}
			set { m_UserGroup_Msg=value;}
		}
		//构造函数
		public UserGroupModel()
		{
			this.m_UserGroup_ID=0;
			this.m_UserGroup_Name="";
			this.m_UserGroup_Msg="";
		}
    }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?