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 vMagento_StoreInfo_Site { [Key] [Column(Order = 0)] public int StoreInfo_Id { get; set; } [Key] [Column(Order = 1)] [DatabaseGenerated(DatabaseGeneratedOption.None)] public int ParentId { get; set; } [Key] [Column(Order = 2)] [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; } 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 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; } } }