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 Base_Vehicle { [Key] public int Vehicle_Id { get; set; } [StringLength(50)] public string VehicleCode { get; set; } [StringLength(50)] public string RegionName { get; set; } [StringLength(50)] public string VehicleStatus { get; set; } [StringLength(50)] public string Temperature { get; set; } [StringLength(50)] public string Carrier { get; set; } [StringLength(50)] public string VehicleType { get; set; } [StringLength(50)] public string TruckNo { get; set; } [StringLength(50)] public string OwnerName { get; set; } [StringLength(50)] public string OwnerPhone { get; set; } [StringLength(50)] public string IdCardCode { get; set; } public decimal? Vehicleload { get; set; } public decimal? VehicleVolume { get; set; } public decimal? CarLength { get; set; } public decimal? CarWidth { get; set; } public decimal? CarHeight { get; set; } public int? CarAge { get; set; } [StringLength(50)] public string DriversName { get; set; } [StringLength(50)] public string DriversMobile { get; set; } [StringLength(50)] public string DriversIdCard { get; set; } [StringLength(50)] public string DriverLicenseNo { get; set; } [StringLength(50)] public string PassengerName { get; set; } [StringLength(50)] public string TelephoneVice { get; set; } [StringLength(50)] public string IDCardVice { get; set; } [StringLength(50)] public string DriveNoVice { get; set; } [StringLength(50)] public string TypeVehicle { get; set; } [StringLength(50)] public string VehicleSortCode { get; set; } [StringLength(50)] public string LicenseTypeCode { get; set; } public int? NetWorth { get; set; } [StringLength(50)] public string Model { get; set; } [StringLength(50)] public string EngineNumber { get; set; } [StringLength(50)] public string CertificateNo { get; set; } [StringLength(50)] public string DrivingLicense { get; set; } [StringLength(50)] public string VehicleLicenseNo { get; set; } [StringLength(50)] public string ClassCode { get; set; } [StringLength(50)] public string TrailerHeavy { get; set; } [StringLength(50)] public string PalletNumber { get; set; } public DateTime? RegistrationDate { get; set; } [StringLength(50)] public string TrailerTruckNo { get; set; } public int? IsInsurance { get; set; } [StringLength(50)] public string InsuranceCompany { get; set; } [StringLength(50)] public string InsuranceMobile { get; set; } [StringLength(50)] public string PolicyNumber { get; set; } [StringLength(50)] public string Premium { get; set; } public DateTime? LastAnnuallyDate { get; set; } public DateTime? NextAnnualDate { get; set; } [StringLength(50)] public string VehicleOfficeTel { get; set; } [StringLength(50)] public string PoliceStationTel { get; set; } public int? MaintainMonths { get; set; } [StringLength(50)] public string MaintainKilometers { get; set; } [StringLength(50)] public string Brand { get; set; } [StringLength(50)] public string FrameNumber { get; set; } public DateTime? PurchaseDate { get; set; } public DateTime? LatestReviewDate { get; set; } public DateTime? NextReviewDate { get; set; } public DateTime? CommercialDate { get; set; } public DateTime? CompulsoryDate { get; set; } public int? OriginalValue { get; set; } public decimal? ResidualRate { get; set; } public int? ResidualValue { get; set; } public DateTime? DepreciationPeriod { get; set; } public int? MonthlyMoney { get; set; } public int? IsCarbodyad { get; set; } [StringLength(50)] public string OperationStatus { get; set; } public int? IsPass { get; set; } public int? IsBringWorker { get; set; } public int? IsBringTrolley { get; set; } public int? IsThermometer { get; set; } [StringLength(50)] public string IndustryPreference { get; set; } [StringLength(50)] public string CargoPreferences { get; set; } [StringLength(50)] public string DeliveryPreferences { get; set; } [StringLength(50)] public string KindBusiness { get; set; } [StringLength(50)] public string VehiclePicture { get; set; } [StringLength(50)] public string PortraitPortrait { get; set; } [StringLength(50)] public string IDBadge { get; set; } [StringLength(50)] public string DriverLicensePicture { get; set; } [StringLength(50)] public string VehiclePicture2 { get; set; } [StringLength(50)] public string CompulsoryPics { get; set; } [StringLength(50)] public string BusinessPic { get; set; } [StringLength(50)] public string DrivingLicensePic { get; set; } [StringLength(50)] public string BankCardPic { get; set; } [StringLength(50)] public string RoadTransportPermit { get; set; } [StringLength(50)] public string ContractAttach { get; set; } public string Remark { 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 int? PlatUser_Id { get; set; } public int? UserProduct_Id { get; set; } public string ExpandFields { get; set; } } }