userinfo.cs

来自「本系统是二手房交易系统 采用asp.net技术 开发环境是vs2003+sql」· CS 代码 · 共 182 行

CS
182
字号
using System;

namespace HouseSystem.Modal
{
	/// <summary>
	/// UserInfo 的摘要说明。
	/// </summary>
	public class UserInfo
	{
		// Fields
		private DateTime m_Addtime;
		private string m_Answer;
		private string m_Email;
		private int m_ID;
		private int m_LoginNum;
		private string m_Name;
		private string m_Password;
		private string m_Question;
		private byte m_Sex;
		private byte m_State;
		private string m_Tel1;
		private string m_Tel2;
		private string m_UserName;
		public DateTime Addtime
		{
			get
			{
				return this.m_Addtime;
			}
			set
			{
				this.m_Addtime = value;
			}
		}
 
		public string Answer
		{
			get
			{
				return this.m_Answer;
			}
			set
			{
				this.m_Answer = value;
			}
		}
		public string Email
		{
			get
			{
				return this.m_Email;
			}
			set
			{
				this.m_Email = value;
			}
		}
 
		public int LoginNum
		{
			get
			{
				return this.m_LoginNum;
			}
			set
			{
				this.m_LoginNum = value;
			}
		}
 
		public string Name
		{
			get
			{
				return this.m_Name;
			}
			set
			{
				this.m_Name = value;
			}
		}
 
		public string Question
		{
			get
			{
				return this.m_Question;
			}
			set
			{
				this.m_Question = value;
			}
		}
 
		public byte Sex
		{
			get
			{
				return this.m_Sex;
			}
			set
			{
				this.m_Sex = value;
			}
		}
 
		public byte State
		{
			get
			{
				return this.m_State;
			}
			set
			{
				this.m_State = value;
			}
		}
 
		public string Tel1
		{
			get
			{
				return this.m_Tel1;
			}
			set
			{
				this.m_Tel1 = value;
			}
		}
 
		public string Tel2
		{
			get
			{
				return this.m_Tel2;
			}
			set
			{
				this.m_Tel2 = value;
			}
		}
 
		public int UserId
		{
			get
			{
				return this.m_ID;
			}
			set
			{
				this.m_ID = value;
			}
		}
 
		public string UserName
		{
			get
			{
				return this.m_UserName;
			}
			set
			{
				this.m_UserName = value;
			}
		}
 
		public string UserPass
		{
			get
			{
				return this.m_Password;
			}
			set
			{
				this.m_Password = value;
			}
		}
 

	}
}

⌨️ 快捷键说明

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