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 Magento_StoreInfo { [Key] public int StoreInfo_Id { get; set; } public int ParentId { get; set; } [Required] [StringLength(500)] public string StoreName { get; set; } [StringLength(500)] public string StoreInnerName { get; set; } [StringLength(500)] public string Url { get; set; } [StringLength(500)] public string AccountName { get; set; } [StringLength(500)] public string AccountKey { get; set; } public int? Storage_Id { get; set; } [StringLength(50)] public string StorageName { get; set; } public int? Category_Id { get; set; } public int? IsHost { get; set; } public int? store_id { get; set; } [StringLength(50)] public string code { get; set; } public int? website_id { get; set; } [StringLength(50)] public string website { get; set; } public int? group_id { get; set; } [StringLength(50)] public string name { get; set; } public int? sort_order { get; set; } public int? is_active { get; set; } public int? User_Id { get; set; } [StringLength(50)] public string UserTrueName { 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? ExpressCorpType { get; set; } public int? ExpressCorp_Id { get; set; } [StringLength(500)] public string ExpressCorpName { get; set; } public string ExpandFields { get; set; } } }