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_SKU_ListingDetails
|
{
|
[Key]
|
public long ListingDetails_Id { get; set; }
|
|
public long SKUMain_Id { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string ItemID { get; set; }
|
|
public byte? Adult { get; set; }
|
|
[Column(TypeName = "numeric")]
|
public decimal? BestOfferAutoAcceptPrice { get; set; }
|
|
public int? BestOfferAutoAcceptPrice_CurrencyID { get; set; }
|
|
public byte? BindingAuction { get; set; }
|
|
public byte? BuyItNowAvailable { get; set; }
|
|
public byte? CheckoutEnabled { get; set; }
|
|
[Column(TypeName = "numeric")]
|
public decimal? ConvertedBuyItNowPrice { get; set; }
|
|
public int? ConvertedBuyItNowPrice_currencyID { get; set; }
|
|
[Column(TypeName = "numeric")]
|
public decimal? ConvertedReservePrice { get; set; }
|
|
public int? ConvertedReservePrice_currencyID { get; set; }
|
|
[Column(TypeName = "numeric")]
|
public decimal? ConvertedStartPrice { get; set; }
|
|
public int? ConvertedStartPrice_currencyID { get; set; }
|
|
public int? EndReasonCode { get; set; }
|
|
public DateTime? EndTime { get; set; }
|
|
public byte? HasPublicMessages { get; set; }
|
|
public byte? HasReservePrice { get; set; }
|
|
public byte? HasUnansweredQuestions { get; set; }
|
|
[StringLength(50)]
|
public string LocalListingDistance { get; set; }
|
|
[Column(TypeName = "numeric")]
|
public decimal? MinimumBestOfferPrice { get; set; }
|
|
public int? MinimumBestOfferPrice_currencyID { get; set; }
|
|
[StringLength(50)]
|
public string RelistedItemID { get; set; }
|
|
[StringLength(50)]
|
public string SecondChanceOriginalItemID { get; set; }
|
|
public DateTime? StartTime { get; set; }
|
|
[StringLength(50)]
|
public string TCROriginalItemID { get; set; }
|
|
[StringLength(250)]
|
public string ViewItemURL { get; set; }
|
|
[StringLength(250)]
|
public string ViewItemURLForNaturalSearch { get; set; }
|
|
public string ExpandFields { get; set; }
|
|
public virtual eBay_SKU_Relation eBay_SKU_Relation { get; set; }
|
}
|
}
|