using System; /*************************************************************************************************** * * 作者:贾文涛 * 创建时间:2013.03.18 * 描述:用户实体类 * 修改日志: * 1、2013.03.27 贾文涛 变更实体类对象 * * *************************************************************************************************/ namespace Estsh.Core.Model { /// /// 实体类UserInfo 。(属性说明自动提取数据库字段的描述信息) /// [Serializable] public class UserInfo { #region Model private int _empId; private string _empNo; private string _empNoMD5; private string _empName; private string _quitYmd; private string _quitHms; private string _passwd; private int _empType; private string _company; private int _updateUserId; private string _updateYmd; private string _updateHms; private int _createUserId; private string _createYmd; private string _createHms; private string _enabled; private int _shiftId; private int _factoryId; private int _deptId; private string _lastFunction; private string _guid; public int empId { set { _empId = value; } get { return _empId; } } public string empNo { set { _empNo = value; } get { return _empNo; } } public string empNoMD5 { set { _empNoMD5 = value; } get { return _empNoMD5; } } public string empName { set { _empName = value; } get { return _empName; } } public string quitYmd { set { _quitYmd = value; } get { return _quitYmd; } } public string quitHms { set { _quitHms = value; } get { return _quitHms; } } public string passwd { set { _passwd = value; } get { return _passwd; } } public int empType { set { _empType = value; } get { return _empType; } } public string company { set { _company = value; } get { return _company; } } public int updateUserId { set { _updateUserId = value; } get { return _updateUserId; } } public string updateYmd { set { _updateYmd = value; } get { return _updateYmd; } } public string updateHms { set { _updateHms = value; } get { return _updateHms; } } public int createUserId { set { _createUserId = value; } get { return _createUserId; } } public string createYmd { set { _createYmd = value; } get { return _createYmd; } } public string createHms { set { _createHms = value; } get { return _createHms; } } public string enabled { set { _enabled = value; } get { return _enabled; } } public int shiftId { set { _shiftId = value; } get { return _shiftId; } } public int factoryId { set { _factoryId = value; } get { return _factoryId; } } public int deptId { set { _deptId = value; } get { return _deptId; } } public string lastFunction { set { _lastFunction = value; } get { return _lastFunction; } } public string guid { set { _guid = value; } get { return _guid; } } #endregion } }