using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace AIMS.PublicUI.Model { public 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 { set { _id = value; } get { return _id; } } /// /// /// public string No { set { _no = value; } get { return _no; } } /// /// /// public string Name { set { _name = value; } get { return _name; } } /// /// /// public string HelpCode { set { _helpcode = value; } get { return _helpcode; } } /// /// /// public string Sex { set { _sex = value; } get { return _sex; } } /// /// /// public string PassWord { set { _password = value; } get { return _password; } } /// /// /// public int DepId { set { _depid = value; } get { return _depid; } } /// /// /// public int RoleId { set { _roleid = value; } get { return _roleid; } } /// /// /// public string BirthDay { set { _birthday = value; } get { return _birthday; } } /// /// /// public string TimeToWork { set { _timetowork = value; } get { return _timetowork; } } /// /// 学历 /// public string Diploma { set { _diploma = value; } get { return _diploma; } } /// /// 职称 /// public string JobTitle { set { _jobtitle = value; } get { return _jobtitle; } } public string PersonType { set { _persontype = value; } get { return _persontype; } } /// /// /// public int PersonOrder { set { _personorder = value; } get { return _personorder; } } /// /// /// public int IsValid { set { _isvalid = value; } get { return _isvalid; } } /// /// /// public string OperatorNo { set { _operatorno = value; } get { return _operatorno; } } /// /// /// public string OperatorName { set { _operatorname = value; } get { return _operatorname; } } /// /// /// public DateTime OperateDate { set { _operatedate = value; } get { return _operatedate; } } } }