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 Webgistix_SKU { [Key] public int SKU_Id { get; set; } public long? Product_Id { get; set; } [StringLength(50)] public string ItemID { get; set; } [StringLength(350)] public string ShortDescription { 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; } [StringLength(50)] public string InterfaceStatus { get; set; } public DateTime? PushDate { get; set; } [StringLength(50)] public string PushUser { get; set; } public string Remark { get; set; } [StringLength(50)] public string Category { get; set; } public decimal? UnitPrice { get; set; } public string ExpandFields { get; set; } } }