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 App_Address { [Key] public int Address_Id { get; set; } public int? User_Id { get; set; } [StringLength(50)] public string UserTrueName { get; set; } [StringLength(50)] public string Mobile { get; set; } [StringLength(50)] public string ProvinceName { get; set; } [StringLength(50)] public string CityName { get; set; } [StringLength(50)] public string RegionName { get; set; } [StringLength(200)] public string DetailAddress { get; set; } [StringLength(200)] public string ConsigneeIdcard { get; set; } [StringLength(50)] public string Consignee { get; set; } [StringLength(50)] public string Email { get; set; } [StringLength(50)] public string Zip { get; set; } [StringLength(50)] public string Tel { get; set; } public byte? Enable { get; set; } public byte? IsDefault { get; set; } public long? 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 Modify { get; set; } public DateTime? ModifyDate { get; set; } public int? PlatUser_Id { get; set; } public int? UserProduct_Id { get; set; } [StringLength(50)] public string DayPrice { get; set; } public string ExpandFields { get; set; } } }