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 ExpressEbayEUB_OrderList
|
{
|
[Key]
|
public int EbayEUBOrderList_Id { get; set; }
|
|
public int EbayEUBOrder_Id { get; set; }
|
|
public long OrderList_Id { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string EBayItemID { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string EBayTransactionID { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string EBayBuyerID { get; set; }
|
|
[StringLength(500)]
|
public string EBayItemTitle { get; set; }
|
|
[StringLength(200)]
|
public string EBayEmail { get; set; }
|
|
public int? SoldQTY { get; set; }
|
|
public int PostedQTY { get; set; }
|
|
public int? SalesRecordNumber { get; set; }
|
|
public int? OrderSalesRecordNumber { get; set; }
|
|
[StringLength(50)]
|
public string OrderID { get; set; }
|
|
public int? EBaySiteID { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? ReceivedAmount { get; set; }
|
|
public DateTime? PaymentDate { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? SoldPrice { get; set; }
|
|
public DateTime? SoldDate { get; set; }
|
|
[StringLength(10)]
|
public string CurrencyCode { get; set; }
|
|
[StringLength(300)]
|
public string EBayMessage { get; set; }
|
|
[StringLength(200)]
|
public string PayPalEmail { get; set; }
|
|
[StringLength(300)]
|
public string PayPalMessage { get; set; }
|
|
[StringLength(300)]
|
public string Note { get; set; }
|
|
[StringLength(50)]
|
public string SKUID { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? DeclaredValue { get; set; }
|
|
public decimal? Weight { get; set; }
|
|
[StringLength(50)]
|
public string CustomsTitleCN { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string CustomsTitleEN { get; set; }
|
|
[StringLength(50)]
|
public string OriginCountryCode { get; set; }
|
|
[StringLength(50)]
|
public string OriginCountryName { 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 string ExpandFields { get; set; }
|
}
|
}
|