schangxiang@126.com
2025-09-19 9be9c3784b2881a3fa25e93ae2033dc2803c0ed0
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
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_SKUOther_Relation
    {
        [Key]
        [Column(Order = 0)]
        [DatabaseGenerated(DatabaseGeneratedOption.None)]
        public long SKUMain_Id { get; set; }
 
        [Key]
        [Column(Order = 1)]
        [StringLength(50)]
        public string ItemID { get; set; }
 
        public int? ApplyBuyerProtection_BuyerProtectionSource { get; set; }
 
        public int? ApplyBuyerProtection_BuyerProtectionStatus { get; set; }
 
        public int? BuyerGuaranteePrice_currencyID { get; set; }
 
        public int? BuyerProtection { get; set; }
 
        [StringLength(50)]
        public string CharityID { get; set; }
 
        public int? DescriptionReviseMode { get; set; }
 
        [StringLength(32)]
        public string FreeAddedCategory_ID { get; set; }
 
        public int? GiftServices { get; set; }
 
        public int? HitCounter { get; set; }
 
        public int? InventoryTrackingMethod { get; set; }
 
        public int? ItemPolicy_ID { get; set; }
 
        [StringLength(128)]
        public string PolicyText { get; set; }
 
        [StringLength(32)]
        public string ListingCheckoutRedirectPreference_ProStoresStoreName { get; set; }
 
        [StringLength(32)]
        public string ListingCheckoutRedirectPreference_SellerThirdPartyUsername { get; set; }
 
        public int? ListingDesigner_LayoutID { get; set; }
 
        public bool? OptimalPictureSize { get; set; }
 
        public int? ThemeID { get; set; }
 
        [StringLength(50)]
        public string ListingDuration { get; set; }
 
        public int? ListingEnhancementsCode { get; set; }
 
        public int? ListingSubtype2 { get; set; }
 
        public int? ListingTypeCode { get; set; }
 
        public int? BuyerPaymentMethodCode { get; set; }
 
        public bool? PickupInStore_EligibleForPickupInStore { get; set; }
 
        [StringLength(50)]
        public string PrimaryCategoryID { get; set; }
 
        public int? QuantityAvailableHintCode { get; set; }
 
        public int? QuantityInfo_MinimumRemnantSet { get; set; }
 
        public int? QuantityRestrictionPerBuyerInfo_MaximumQuantity { get; set; }
 
        public int? ReasonHideFromSearchCode { get; set; }
 
        public double? ReservePrice { get; set; }
 
        public byte? ReservePrice_currencyID { get; set; }
 
        public byte? ReviseStatus_BuyItNowAdded { get; set; }
 
        public byte? ReviseStatus_BuyItNowLowered { get; set; }
 
        public byte? ReviseStatus_ItemRevised { get; set; }
 
        public byte? ReviseStatus_ReserveLowered { get; set; }
 
        public byte? ReviseStatus_ReserveRemoved { get; set; }
 
        [StringLength(50)]
        public string SecondaryCategoryID { get; set; }
 
        [StringLength(50)]
        public string SellerContactDetailsAddressID { get; set; }
 
        [StringLength(150)]
        public string UUID { get; set; }
 
        [Column(TypeName = "numeric")]
        public decimal? UnitInfo_UnitQuantity { get; set; }
 
        [StringLength(50)]
        public string UnitInfo_UnitType { get; set; }
 
        [StringLength(50)]
        public string TimeLeft { get; set; }
 
        public int? Storefront_StoreCategory2ID { get; set; }
 
        public int? Storefront_StoreCategoryID { get; set; }
 
        [StringLength(250)]
        public string StoreURL { get; set; }
 
        public double? StartPrice { get; set; }
 
        public int? StartPrice_currencyID { get; set; }
 
        public int? SkypeContactOptionCode { get; set; }
 
        [StringLength(50)]
        public string SKU { get; set; }
 
        public int? SiteCode { get; set; }
 
        public string ExpandFields { get; set; }
 
        public virtual eBay_SKU_Relation eBay_SKU_Relation { get; set; }
    }
}