using System; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { public class QC_USERTVCHECK_EXTEND { [NotMapped] public decimal EID { get; set; } [NotMapped] public string NAME { get; set; } [NotMapped] public string GROUPNAME { get; set; } [NotMapped] public Nullable ENTRYDATE { get; set; } [NotMapped] public Nullable POSITIVETIME { get; set; } [NotMapped] public Nullable DISMISSTIME { get; set; } [NotMapped] public decimal TVID { get; set; } [NotMapped] public Nullable TVTIME { get; set; } [NotMapped] public string USERNAME { get; set; } [NotMapped] public string FILENAME { get; set; } [NotMapped] public Nullable QUALITYTIME { get; set; } [NotMapped] public Nullable QUALITYSTATUS { get; set; } [NotMapped] public string QUALITYMEMO { get; set; } [NotMapped] public string QUALITYADVISE { get; set; } } }