namespace iWareSql.MyDbContext { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class v_ware_age_warm { [Key] [Column(Order = 0)] [StringLength(255)] public string SNCode { get; set; } [Key] [Column(Order = 1)] [StringLength(50)] public string MaterialCode { get; set; } [Key] [Column(Order = 2)] [StringLength(50)] public string MaterialName { get; set; } [StringLength(50)] public string ContainerCode { get; set; } public DateTime? CreateTime { get; set; } public DateTime? RecordInsertTime { get; set; } [Key] [Column(Order = 3)] [StringLength(50)] public string PlaceCode { get; set; } public decimal? QualityAssurance { get; set; } public int? WareAge { get; set; } public decimal? OverDueDays { get; set; } [Key] [Column(Order = 4)] [StringLength(50)] public string AreaName { get; set; } } }