using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; namespace Tiger.Model { /// /// 实体:用户 /// [Description("Primary:ID")] [Serializable] [SugarTable("V_SYS_USER")] public class V_SYS_USER : DbEntityNoGhost, iViewEntity { #region 构造函数 /// /// 实体:用户 /// public V_SYS_USER() { } #endregion #region 公共属性 /// /// 用户ID /// public string USER_ID { get; set; } /// /// 用户密码 /// public string USER_PWD { get; set; } /// /// 用户名 /// public string USER_NAME { get; set; } /// /// 用户状态 /// public string STATUS_CODE { get; set; } /// /// 组织代码 /// public string ORG_CODE { get; set; } /// /// 组织父代码 /// public string PARENT_ORG { get; set; } /// /// 电子邮件 /// public string EMAIL { get; set; } /// /// 座机号码 /// public string TEL_NO { get; set; } /// /// 手机号码 /// public string PHONE_NO { get; set; } #endregion #region 虚拟属性 [SugarColumn(IsIgnore = true)] public string POS_CODE { get; set; } [SugarColumn(IsIgnore = true)] public string POS_NAME { get; set; } [SugarColumn(IsIgnore = true)] public string OPER_CODE { get; set; } [SugarColumn(IsIgnore = true)] public string PATH { get; set; } [SugarColumn(IsIgnore = true)] public string LTEXT { get; set; } [SugarColumn(IsIgnore = true)] public string LVALUE { get; set; } #endregion }//endClass }