using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { public partial class BAS_INNERUSERROLE_Extend { /// /// 员工ID /// [NotMapped] public decimal PKID { get; set; } /// /// 员工工号 /// [NotMapped] public decimal EID { get; set; } /// /// 员工名称 /// [NotMapped] public string UNAME { get; set; } /// /// 角色名称 /// [NotMapped] public string ROLESNAMES { get; set; } /// /// 角色ID /// [NotMapped] public string ROLEIDS { get; set; } } }