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 Amazon_SaleOrderList
|
{
|
[Key]
|
public long OrderListRelation_Id { get; set; }
|
|
public int? OrderRelation_Id { get; set; }
|
|
public long OrderList_Id { get; set; }
|
|
public long Order_Id { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string AmazonOrderId { get; set; }
|
|
public long Product_Id { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string ProductCode { get; set; }
|
|
[Required]
|
[StringLength(500)]
|
public string ProductName { get; set; }
|
|
[StringLength(20)]
|
public string ASIN { get; set; }
|
|
[StringLength(50)]
|
public string SellerSKU { get; set; }
|
|
[StringLength(50)]
|
public string OrderItemId { get; set; }
|
|
[StringLength(300)]
|
public string ProductTitle { get; set; }
|
|
public int? QuantityOrdered { get; set; }
|
|
public int? QuantityShipped { get; set; }
|
|
[StringLength(200)]
|
public string GiftMessageText { get; set; }
|
|
[StringLength(50)]
|
public string GiftWrapLevel { get; set; }
|
|
[StringLength(50)]
|
public string ItemPriceCurrency { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? ItemPriceAmount { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? ShippingPriceAmount { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? GiftWrapPriceAmount { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? ItemTaxAmount { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? ShippingTaxAmount { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? GiftWrapTaxAmount { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? ShippingDiscountAmount { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? PromotionDiscountAmount { get; set; }
|
|
[StringLength(500)]
|
public string PromotionIds { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? CODFeeAmount { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? CODFeeDiscountAmount { get; set; }
|
|
[StringLength(50)]
|
public string InvoiceRequirement { get; set; }
|
|
[StringLength(50)]
|
public string BuyerSelectedInvoiceCategory { get; set; }
|
|
[StringLength(50)]
|
public string InvoiceTitle { get; set; }
|
|
[StringLength(50)]
|
public string InvoiceInformation { get; set; }
|
|
[StringLength(50)]
|
public string ConditionId { get; set; }
|
|
[StringLength(50)]
|
public string ConditionSubtypeId { get; set; }
|
|
[StringLength(100)]
|
public string ConditionNote { get; set; }
|
|
public DateTime? ScheduledDeliveryStartDate { get; set; }
|
|
public DateTime? ScheduledDeliveryEndDate { get; set; }
|
|
public byte? Enable { 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 long? SplitProduct_Id { get; set; }
|
|
[StringLength(50)]
|
public string SplitProductCode { get; set; }
|
|
[StringLength(500)]
|
public string SplitProductName { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|