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 ExpressDHL_OrderList { [Key] public int DHLOrderList_Id { get; set; } public int? OrderList_Id { get; set; } public int DHLOrder_Id { get; set; } [StringLength(50)] public string LicensePlate { get; set; } [StringLength(50)] public string PackageType { get; set; } public decimal? Weight { get; set; } public decimal? DimWeight { get; set; } [StringLength(50)] public string Depth { get; set; } [StringLength(50)] public string Width { get; set; } [StringLength(50)] public string Height { get; set; } public string PieceContents { get; set; } public int? CreateID { get; set; } [StringLength(50)] public string Creator { get; set; } public DateTime? CreateDate { get; set; } public int? ModifyID { get; set; } [StringLength(50)] public string Modifier { get; set; } public DateTime? ModifyDate { get; set; } public string ExpandFields { get; set; } public virtual ExpressDHL_Order ExpressDHL_Order { get; set; } } }