namespace wcftest.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class Sale_Order_TempHold { [Key] public long TempHold_Id { get; set; } public long Temp_Id { get; set; } public long Product_Id { get; set; } [Required] [StringLength(50)] public string ProductCode { get; set; } public int SplitQuantity { get; set; } public long MainProduct_Id { get; set; } [Required] [StringLength(50)] public string MainProductCode { get; set; } public int QuantityOrder { get; set; } public int HoldedQuantity { get; set; } public int MainQuantity { get; set; } public int? CreateID { get; set; } [StringLength(50)] public string Creator { get; set; } public DateTime? CreateDate { get; set; } public string ExpandFields { get; set; } } }