using System; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { public class BAS_MON_INNERUSER_EXTEND { [NotMapped] public BAS_MON_INNERUSER bas_mon_inneruser { get; set; } //经纪人状态 [NotMapped] public Nullable FUTURESSTATUS { get; set; } //操盘手状态 [NotMapped] public Nullable TRADERSTATUS { get; set; } //导师状态 [NotMapped] public Nullable TUTORSTATUS { get; set; } //销售组 [NotMapped] public string GNAME { get; set; } //部门 [NotMapped] public string DEPTNAME { get; set; } } }