177 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			177 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using AIMSDAL;
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
| 	[Serializable]
 | |
|     public partial class Person
 | |
| 	{
 | |
|         private int? id; 
 | |
|         private string no; 
 | |
|         private string name; 
 | |
|         private string helpCode; 
 | |
|         private string sex; 
 | |
|         private string passWord; 
 | |
|         private int? depId; 
 | |
|         private int? roleId; 
 | |
|         private string birthDay; 
 | |
|         private string timeToWork; 
 | |
|         private string diploma; 
 | |
|         private string jobTitle; 
 | |
|         private string personType; 
 | |
|         private int? personOrder; 
 | |
|         private int? isValid; 
 | |
|         private string operatorNo; 
 | |
|         private string operatorName; 
 | |
|         private DateTime? operateDate; 
 | |
| 	
 | |
| 	
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? Id
 | |
| 		{
 | |
| 		    get{ return id; }
 | |
| 			set{ id=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string No
 | |
| 		{
 | |
| 		    get{ return no; }
 | |
| 			set{ no=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Name
 | |
| 		{
 | |
| 		    get{ return name; }
 | |
| 			set{ name=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string HelpCode
 | |
| 		{
 | |
| 		    get{ return helpCode; }
 | |
| 			set{ helpCode=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string Sex
 | |
| 		{
 | |
| 		    get{ return sex; }
 | |
| 			set{ sex=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string PassWord
 | |
| 		{
 | |
| 		    get{ return passWord; }
 | |
| 			set{ passWord=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? DepId
 | |
| 		{
 | |
| 		    get{ return depId; }
 | |
| 			set{ depId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? RoleId
 | |
| 		{
 | |
| 		    get{ return roleId; }
 | |
| 			set{ roleId=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string BirthDay
 | |
| 		{
 | |
| 		    get{ return birthDay; }
 | |
| 			set{ birthDay=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string TimeToWork
 | |
| 		{
 | |
| 		    get{ return timeToWork; }
 | |
| 			set{ timeToWork=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 学历
 | |
|         /// </summary>
 | |
| 		public string Diploma
 | |
| 		{
 | |
| 		    get{ return diploma; }
 | |
| 			set{ diploma=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 职称
 | |
|         /// </summary>
 | |
| 		public string JobTitle
 | |
| 		{
 | |
| 		    get{ return jobTitle; }
 | |
| 			set{ jobTitle=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string PersonType
 | |
| 		{
 | |
| 		    get{ return personType; }
 | |
| 			set{ personType=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? PersonOrder
 | |
| 		{
 | |
| 		    get{ return personOrder; }
 | |
| 			set{ personOrder=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public int? IsValid
 | |
| 		{
 | |
| 		    get{ return isValid; }
 | |
| 			set{ isValid=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string OperatorNo
 | |
| 		{
 | |
| 		    get{ return operatorNo; }
 | |
| 			set{ operatorNo=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public string OperatorName
 | |
| 		{
 | |
| 		    get{ return operatorName; }
 | |
| 			set{ operatorName=value; }
 | |
| 		}
 | |
| 	    /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 		public DateTime? OperateDate
 | |
| 		{
 | |
| 		    get{ return operateDate; }
 | |
| 			set{ operateDate=value; }
 | |
| 		}
 | |
| 	}
 | |
| }
 |