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 TMS_Pickup { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public TMS_Pickup() { TMS_PickupDetail = new HashSet(); } [Key] public int Pickup_Id { get; set; } [StringLength(50)] public string PickupCode { get; set; } [StringLength(50)] public string PickupType { get; set; } [StringLength(50)] public string Stats { get; set; } [StringLength(200)] public string CarrierName { get; set; } [StringLength(200)] public string TruckNo { get; set; } [StringLength(50)] public string VehicleType { get; set; } [StringLength(50)] public string DriverName { get; set; } [StringLength(50)] public string Tel { get; set; } public decimal? TotalQuantity { get; set; } public decimal? TotalWeight { get; set; } public decimal? TotalVolume { get; set; } public string ExpandFields { get; set; } [StringLength(50)] public string Remark { get; set; } public DateTime? ModifyDate { get; set; } public int? CreateID { get; set; } [StringLength(50)] public string Creator { get; set; } public DateTime? CreateDate { get; set; } [StringLength(50)] public string Modifier { get; set; } public int? ModifyID { get; set; } public DateTime? ModifyDate1 { get; set; } public int? UserProduct_Id { get; set; } public int? PlatUser_Id { get; set; } [StringLength(50)] public string TotalNumber { get; set; } public decimal? Volume { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection TMS_PickupDetail { get; set; } } }