staffs.cs.svn-base

来自「走吧旅游网站前后台源代码」· SVN-BASE 代码 · 共 134 行

SVN-BASE
134
字号
using System;
namespace Maticsoft.Model
{
	/// <summary>
	/// 实体类Staffs 。(属性说明自动提取数据库字段的描述信息)
	/// </summary>
	public class Staffs
	{
		public Staffs()
		{}
		#region Model
		private string _staffid;
		private string _staffname;
		private bool _gender;
		private string _knowledge;
		private string _nativeplace;
		private DateTime _birthdate;
		private string _phone;
		private string _nowaddress;
		private string _idcardno;
		private string _idcardaddress;
		private string _password;
		private string _recuserid;
		private DateTime _recdate;
		/// <summary>
		/// 
		/// </summary>
		public string StaffID
		{
			set{ _staffid=value;}
			get{return _staffid;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string StaffName
		{
			set{ _staffname=value;}
			get{return _staffname;}
		}
		/// <summary>
		/// 
		/// </summary>
		public bool Gender
		{
			set{ _gender=value;}
			get{return _gender;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string Knowledge
		{
			set{ _knowledge=value;}
			get{return _knowledge;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string NativePlace
		{
			set{ _nativeplace=value;}
			get{return _nativeplace;}
		}
		/// <summary>
		/// 
		/// </summary>
		public DateTime BirthDate
		{
			set{ _birthdate=value;}
			get{return _birthdate;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string Phone
		{
			set{ _phone=value;}
			get{return _phone;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string NowAddress
		{
			set{ _nowaddress=value;}
			get{return _nowaddress;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string IDCardNo
		{
			set{ _idcardno=value;}
			get{return _idcardno;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string IDCardAddress
		{
			set{ _idcardaddress=value;}
			get{return _idcardaddress;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string Password
		{
			set{ _password=value;}
			get{return _password;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string RecUserID
		{
			set{ _recuserid=value;}
			get{return _recuserid;}
		}
		/// <summary>
		/// 
		/// </summary>
		public DateTime RecDate
		{
			set{ _recdate=value;}
			get{return _recdate;}
		}
		#endregion Model

	}
}

⌨️ 快捷键说明

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