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_ConsignorAddress { [Key] public int Address_Id { get; set; } public int? Province_Id { get; set; } [StringLength(50)] public string ProvinceName { get; set; } public int? City_Id { get; set; } [StringLength(800)] public string CityName { get; set; } public int? Region_Id { get; set; } [StringLength(800)] public string RegionName { get; set; } [StringLength(1000)] public string DetailAddress { get; set; } [StringLength(50)] public string Consignee { get; set; } [StringLength(200)] public string Email { get; set; } [StringLength(50)] public string Mobile { get; set; } [StringLength(50)] public string Zip { get; set; } [StringLength(100)] public string Tel { get; set; } public decimal? Longitude { get; set; } public decimal? Latitude { get; set; } public byte? IsDefaultAddress { get; set; } public int? PayType { get; set; } public int? DeliveryType { get; set; } [StringLength(50)] public string PlatUserCode { get; set; } [StringLength(50)] public string PlatUserName { get; set; } [StringLength(50)] public string PlatCorpName { get; set; } [StringLength(50)] public string UserProductCode { get; set; } [StringLength(100)] public string UserProductAlias { get; set; } [StringLength(500)] public string Street { get; set; } [StringLength(50)] public string ConsigneeIdcard { get; set; } [StringLength(50)] public string LinkmanAttr { get; set; } public int? Consignor_Id { get; set; } [StringLength(50)] public string ConsignorCode { get; set; } [StringLength(50)] public string ConsignorName { get; set; } [StringLength(50)] public string Pickuper { get; set; } [StringLength(50)] public string BillingMobile { get; set; } [StringLength(50)] public string BillingName { get; set; } [StringLength(50)] public string BillingCode { get; set; } [StringLength(50)] public string BillingArea { get; set; } [StringLength(50)] public string BillingMapaddress { get; set; } [StringLength(50)] public string DeliveryAddress { get; set; } public int? IsdriverLoading { get; set; } public int? IsLoadingPlatform { get; set; } public int? IsThermometry { 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 byte? Enable { get; set; } public int? PlatUser_Id { get; set; } public int? UserProduct_Id { get; set; } public int? ConsignorAddress_Id { get; set; } public string ExpandFields { get; set; } } }