using System; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { public class SOFT_USER_EXTEND { [NotMapped] public string USERNAME { get; set; } [NotMapped] public string RESID { get; set; } [NotMapped] public Nullable USERNO { get; set; } [NotMapped] public Nullable REGCAMPAINID { get; set; } } public class Soft_User_UserData { [NotMapped] public string userName { get; set; } [NotMapped] public string tradeCode { get; set; } [NotMapped] public string Hst_username { get; set; } } }