namespace IWareDataAccess.EF { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class View_BASE_PLACE_VS_CONTAINER { [Key] [Column(Order = 0)] [DatabaseGenerated(DatabaseGeneratedOption.None)] public int id { get; set; } [StringLength(50)] public string place { get; set; } [StringLength(50)] public string containerName { get; set; } [StringLength(50)] public string itemName { get; set; } public int? itemNum { get; set; } public int? isBad { get; set; } [StringLength(50)] public string badByFactory { get; set; } public decimal? price { get; set; } [StringLength(50)] public string unit { get; set; } public DateTime? updateTime { get; set; } [StringLength(50)] public string status { get; set; } public int? isFull { get; set; } public int? isLock { get; set; } [StringLength(50)] public string pvcCode { get; set; } public int? enable { get; set; } public int? placeLevel { get; set; } public int? enable2 { get; set; } [StringLength(50)] public string itemDes { get; set; } [StringLength(50)] public string createLine { get; set; } [StringLength(50)] public string inType { get; set; } [StringLength(50)] public string palletType { get; set; } public int? srmId { get; set; } public int? overDueTime { get; set; } public DateTime? Expr1 { get; set; } public int? maxStorage { get; set; } public int? minStorage { get; set; } [Key] [Column(Order = 1)] [StringLength(2)] public string isEmptyContainer { get; set; } [Key] [Column(Order = 2)] [DatabaseGenerated(DatabaseGeneratedOption.None)] public int stAge { get; set; } [StringLength(4)] public string stStatus { get; set; } [StringLength(50)] public string taskType { get; set; } public DateTime? CVIUpdateTime { get; set; } } }