using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CK.SCP.Models.ScpEntity { public class TB_QadOrder { [Key] public decimal ID { get; set; } [StringLength(50)] public string BillNo { get; set; } [StringLength(50)] public string SupplierCode { get; set; } public DateTime StartDate { get; set; } public DateTime EndDate { get; set; } [NotMapped] [StringLength(50)] public string Address { get; set; } [NotMapped] [StringLength(50)] public string ProductCode { get; set; } [NotMapped] public decimal Qty { get; set; } [NotMapped] [StringLength(50)] public string PartName { get; set; } [NotMapped] [StringLength(50)] public string VendName{ get; set; } } }