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 eBay_Order_Relation
|
{
|
[Key]
|
public int OrderRelation_Id { get; set; }
|
|
public int? StoreInfo_Id { get; set; }
|
|
[StringLength(250)]
|
public string StoreName { get; set; }
|
|
public long Order_Id { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string OrderCode { get; set; }
|
|
public byte? StatusID { get; set; }
|
|
[StringLength(50)]
|
public string StatusText { get; set; }
|
|
[StringLength(50)]
|
public string MainOrderID { get; set; }
|
|
[StringLength(50)]
|
public string OrderID { get; set; }
|
|
[StringLength(50)]
|
public string FullOrderID { get; set; }
|
|
[StringLength(50)]
|
public string CustomOrderID { get; set; }
|
|
public int? SellingManagerSalesRecordNumber { get; set; }
|
|
[StringLength(50)]
|
public string OrderStatus { get; set; }
|
|
[StringLength(50)]
|
public string AdjustmentAmount_currencyID { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? AdjustmentAmount { get; set; }
|
|
[StringLength(50)]
|
public string AmountPaid_currencyID { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? AmountPaid { get; set; }
|
|
[StringLength(50)]
|
public string AmountSaved_currencyID { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? AmountSaved { get; set; }
|
|
[StringLength(50)]
|
public string CheckoutStatus_Status { get; set; }
|
|
[StringLength(50)]
|
public string CheckoutStatus_PaymentMethod { get; set; }
|
|
public DateTime? CheckoutStatus_LastModifiedTime { get; set; }
|
|
[StringLength(50)]
|
public string ShippingDetails_ShippingServiceCost_currencyID { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? ShippingDetails_ShippingServiceCost { get; set; }
|
|
public DateTime? CreatedTime { get; set; }
|
|
[StringLength(50)]
|
public string ShippingAddress_Name { get; set; }
|
|
[StringLength(500)]
|
public string ShippingAddress_Street { get; set; }
|
|
[StringLength(500)]
|
public string ShippingAddress_Street1 { get; set; }
|
|
[StringLength(50)]
|
public string ShippingAddress_CityName { get; set; }
|
|
[StringLength(50)]
|
public string ShippingAddress_Country { get; set; }
|
|
[StringLength(50)]
|
public string ShippingAddress_CountryName { get; set; }
|
|
[StringLength(50)]
|
public string ShippingAddress_Phone { get; set; }
|
|
[StringLength(50)]
|
public string ShippingAddress_PostalCode { get; set; }
|
|
[StringLength(50)]
|
public string ShippingAddress_CompanyName { get; set; }
|
|
[StringLength(50)]
|
public string ShippingAddress_FirstName { get; set; }
|
|
[StringLength(50)]
|
public string ShippingAddress_LastName { get; set; }
|
|
[StringLength(50)]
|
public string ShippingAddress_Phone2 { get; set; }
|
|
[StringLength(50)]
|
public string Subtotal_currencyID { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? Subtotal { get; set; }
|
|
[StringLength(50)]
|
public string Total_currencyID { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? Total { get; set; }
|
|
[StringLength(150)]
|
public string BuyerEmail { get; set; }
|
|
[StringLength(50)]
|
public string BuyerUserID { get; set; }
|
|
[StringLength(500)]
|
public string BuyerCheckoutMessage { get; set; }
|
|
public DateTime? ShippedTime { get; set; }
|
|
[StringLength(50)]
|
public string PaymentHoldStatus { get; set; }
|
|
[StringLength(50)]
|
public string PaymentHoldDetails_PaymentHoldReason { 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; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|