namespace yunneiWCS.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("inStockOrderList")] public partial class inStockOrderList { public int inStockOrderListId { get; set; } public int? orderCodeId { get; set; } [StringLength(50)] public string productCode { get; set; } [StringLength(50)] public string productName { get; set; } [StringLength(50)] public string serialNumber { get; set; } } }