using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.MAP { public class WX_USERPERCENT_Extend { [DisplayName("EID")] [NotMapped] public decimal EID { get; set; } [DisplayName("组ID")] [NotMapped] public decimal? GID { get; set; } [DisplayName("人员比例")] [NotMapped] public decimal? DIV_PERCENT { get; set; } [DisplayName("组名")] [NotMapped] public string GNAME { get; set; } [DisplayName("姓名")] [NotMapped] public string UNAME { get; set; } [DisplayName("真实姓名")] [NotMapped] public string TRUENAME { get; set; } public short ISDISMISS { get; set; } } public class WX_USERPERCENT_Extend2 { [DisplayName("EID")] [NotMapped] public decimal EID { get; set; } [DisplayName("UserId")] [NotMapped] public decimal UserId { get; set; } [DisplayName("组ID")] [NotMapped] public decimal GID { get; set; } [DisplayName("人员比例")] [NotMapped] public decimal DIV_PERCENT { get; set; } [DisplayName("姓名")] [NotMapped] public string UNAME { get; set; } } }