using System.ComponentModel.DataAnnotations; namespace CK.SCP.Models.ScpEntity { public class TB_QadOrderDetail { [Key] public decimal ID { get; set; } [StringLength(50)] public string BillNo { get; set; } [StringLength(50)] public string ProductCode { get; set; } public decimal Price { get; set; } public decimal Qty { get; set; } public decimal Qtyed { get; set; } } }