schangxiang@126.com
2025-09-18 49a51c068d62084bc4c3e77c4be94a20de556c4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
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; }
    }
}