namespace wcftest.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("lackOrderList")] public partial class lackOrderList { [Key] public int lackListId { get; set; } public int? lackId { get; set; } [StringLength(50)] public string saleCode { get; set; } [StringLength(50)] public string saleCodeItem { get; set; } [StringLength(50)] public string materailCode { get; set; } [StringLength(100)] public string materailName { get; set; } public decimal? lackQuantity { get; set; } public decimal? temporaryQuantity { get; set; } public decimal? storageQuantity { get; set; } [StringLength(50)] public string storageUnit { get; set; } //public virtual lackOrderList lackOrderList1 { get; set; } //public virtual lackOrderList lackOrderList2 { get; set; } } }