using System; using System.ComponentModel.DataAnnotations; namespace CK.SCP.Models.ScpEntity { public class V_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; } [StringLength(50)] public string Address { get; set; } [StringLength(50)] public string ProductCode { get; set; } public decimal Price { get; set; } public decimal Qty { get; set; } public decimal Qtyed { get; set; } public string PartName { get; set; } public string VendName { get; set; } } }