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; /// /// /// public int? Id { get{ return id; } set{ id=value; } } /// /// /// public string No { get{ return no; } set{ no=value; } } /// /// /// public string Name { get{ return name; } set{ name=value; } } /// /// /// public string HelpCode { get{ return helpCode; } set{ helpCode=value; } } /// /// /// public string Sex { get{ return sex; } set{ sex=value; } } /// /// /// public string PassWord { get{ return passWord; } set{ passWord=value; } } /// /// /// public int? DepId { get{ return depId; } set{ depId=value; } } /// /// /// public int? RoleId { get{ return roleId; } set{ roleId=value; } } /// /// /// public string BirthDay { get{ return birthDay; } set{ birthDay=value; } } /// /// /// public string TimeToWork { get{ return timeToWork; } set{ timeToWork=value; } } /// /// 学历 /// public string Diploma { get{ return diploma; } set{ diploma=value; } } /// /// 职称 /// public string JobTitle { get{ return jobTitle; } set{ jobTitle=value; } } /// /// /// public string PersonType { get{ return personType; } set{ personType=value; } } /// /// /// public int? PersonOrder { get{ return personOrder; } set{ personOrder=value; } } /// /// /// public int? IsValid { get{ return isValid; } set{ isValid=value; } } /// /// /// public string OperatorNo { get{ return operatorNo; } set{ operatorNo=value; } } /// /// /// public string OperatorName { get{ return operatorName; } set{ operatorName=value; } } /// /// /// public DateTime? OperateDate { get{ return operateDate; } set{ operateDate=value; } } } }