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_TransfterList { [Key] public int DHLOrderList_Id { get; set; } public long? TransferList_Id { get; set; } public int DHLOrder_Id { get; set; } [Required] [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; } [StringLength(50)] public string LicensePlate { get; set; } public string ExpandFields { get; set; } public virtual ExpressDHL_Transfter ExpressDHL_Transfter { get; set; } } }