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 AliExpress_SaleOrderList { [Key] public long OrderRelationList_Id { get; set; } public long? OrderRelation_Id { get; set; } public long OrderList_Id { get; set; } public long Order_Id { get; set; } public long? AliExpressOrderID { get; set; } public long? AliExpressChildOrderID { get; set; } public long? Product_Id { get; set; } [StringLength(128)] public string ProductCode { get; set; } public long? AliExpressProductID { get; set; } [StringLength(50)] public string SkuCode { get; set; } [StringLength(200)] public string ProductName { get; set; } public long? SplitProduct_Id { get; set; } [StringLength(50)] public string SplitProductCode { get; set; } [StringLength(500)] public string SplitProductName { get; set; } [StringLength(50)] public string ProductUnit { get; set; } public int? ProductCount { get; set; } public int? LotNum { get; set; } public int? GoodsPrepareTime { get; set; } public int? FreightCommitDay { get; set; } [StringLength(50)] public string LogisticsType { get; set; } [StringLength(200)] public string LogisticsServiceName { get; set; } [StringLength(50)] public string SonOrderStatus { get; set; } [StringLength(500)] public string ProductSnapUrl { get; set; } [StringLength(50)] public string DeliveryTime { get; set; } [StringLength(50)] public string ShowStatus { get; set; } public int? ProductionAttributesOrder { get; set; } public short? ProductionAttributesPId { get; set; } [StringLength(50)] public string ProductionAttributesPName { get; set; } [StringLength(50)] public string ProductionAttributesPValue { get; set; } [StringLength(50)] public string ProductionAttributesSelfDefineValue { get; set; } [StringLength(50)] public string ProductionAttributesShowType { get; set; } [Column(TypeName = "ntext")] public string ProductionAttributesSkuImg { get; set; } public decimal? ProductUnitPrice { get; set; } public decimal? LogisticsAmount { get; set; } public decimal? TotalProductAmount { get; set; } public decimal? InitOrderAmtAmount { get; set; } public decimal? InitOrderAmtCent { get; set; } [StringLength(50)] public string InitOrderAmtCurrencyCode { get; set; } public decimal? InitOrderAmtCentFactor { get; set; } public int? InitOrderAmtDefaultFractionDigits { get; set; } [StringLength(50)] public string InitOrderAmtSymbol { get; set; } public decimal? ProductPriceAmount { get; set; } public decimal? ProductPriceCent { get; set; } [StringLength(50)] public string ProductPriceCurrencyCode { get; set; } public decimal? ProductPriceCentFactor { get; set; } public int? ProductPriceDefaultFractionDigits { get; set; } [StringLength(50)] public string ProductPriceSymbol { get; set; } public decimal? UnitPriceAmount { get; set; } public decimal? UnitPriceCent { get; set; } [StringLength(50)] public string UnitPriceCurrencyCode { get; set; } public decimal? UnitPriceCentFactor { get; set; } public int? UnitPriceDefaultFractionDigits { get; set; } [StringLength(50)] public string UnitPriceSymbol { get; set; } public decimal? Quantity { get; set; } public string Remark { get; set; } public int? Enable { 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 Value01 { get; set; } [StringLength(50)] public string Value02 { get; set; } [StringLength(50)] public string Value03 { get; set; } [StringLength(50)] public string Value04 { get; set; } [StringLength(50)] public string Value05 { get; set; } public string ExpandFields { get; set; } public virtual AliExpress_SaleOrder AliExpress_SaleOrder { get; set; } } }