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 ExpressWinit_Sku_Relation { [Key] public int WinitProduct_Id { get; set; } public long? Product_Id { get; set; } [StringLength(50)] public string ProductCode { get; set; } [StringLength(500)] public string ProductName { get; set; } [StringLength(300)] public string ProductModel { get; set; } public string ProductSpec { get; set; } [StringLength(50)] public string WinitProductCode { get; set; } [StringLength(50)] public string WarehouseID { get; set; } [StringLength(50)] public string Specification { get; set; } [StringLength(50)] public string ChineseName { get; set; } [StringLength(50)] public string EnglishName { get; set; } [StringLength(50)] public string CategoryOne { get; set; } [StringLength(50)] public string CategoryTwo { get; set; } [StringLength(50)] public string CategoryThree { get; set; } public decimal? RegisteredWeight { get; set; } public byte? FixedVolumeWeight { get; set; } public decimal? RegisteredLength { get; set; } public decimal? RegisteredWidth { get; set; } public decimal? RegisteredHeight { get; set; } public byte? Branded { get; set; } [StringLength(50)] public string BrandedName { get; set; } [StringLength(50)] public string Model { get; set; } [StringLength(500)] public string DisplayPageUrl { get; set; } [StringLength(50)] public string Exportcountry { get; set; } [StringLength(50)] public string InporCountry { get; set; } [Column(TypeName = "money")] public decimal? InportDeclaredvalue { get; set; } [Column(TypeName = "money")] public decimal? ExportDeclaredvalue { get; set; } public byte? Battery { get; set; } [StringLength(50)] public string FDACertID { get; set; } [StringLength(50)] public string FCCCertID { get; set; } [StringLength(50)] public string DOTCertID { get; set; } [StringLength(50)] public string OtherCertID { 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 int? PlatUser_Id { get; set; } [StringLength(50)] public string PlatUserCode { get; set; } [StringLength(50)] public string PlatUserName { get; set; } [StringLength(50)] public string PlatCorpName { get; set; } public int? UserProduct_Id { get; set; } [StringLength(50)] public string UserProductCode { get; set; } [StringLength(100)] public string UserProductAlias { get; set; } public string ExpandFields { get; set; } } }