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 Weidian_Product { [Key] public int row_Id { get; set; } public int? istop { get; set; } [StringLength(50)] public string item_desc { get; set; } [StringLength(50)] public string item_name { get; set; } [StringLength(50)] public string fx_fee_rate { get; set; } [StringLength(50)] public string seller_id { get; set; } public string imgs { get; set; } [StringLength(50)] public string merchant_code { get; set; } public int? sold { get; set; } [StringLength(50)] public string thumb_imgs { get; set; } [StringLength(50)] public string itemid { get; set; } [StringLength(50)] public string title { get; set; } public int? stock { get; set; } [StringLength(50)] public string id { get; set; } [StringLength(50)] public string sku_merchant_code { get; set; } [StringLength(50)] public string attr_ids { get; set; } [StringLength(50)] public string price { get; set; } [StringLength(50)] public string img { get; set; } [StringLength(50)] public string status { get; set; } [StringLength(50)] public string remote_free_delivery { get; set; } public int? free_delivery { get; set; } [StringLength(50)] public string titles { get; set; } [StringLength(50)] public string cates { get; set; } public int? sort_num { get; set; } [StringLength(50)] public string cate_id { get; set; } [StringLength(50)] public string cate_name { get; set; } [StringLength(50)] 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; } } }