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 vBase_StorageArea_Position_History { [Column(TypeName = "date")] public DateTime? StorageDay { get; set; } [Key] [Column(Order = 0)] [DatabaseGenerated(DatabaseGeneratedOption.None)] public int Storage_Id { get; set; } [Key] [Column(Order = 1)] [StringLength(50)] public string StorageName { get; set; } [StringLength(50)] public string AreaCode { get; set; } public int? UsedPositionCount { get; set; } public int? UnusePositionCount { get; set; } } }