├── .gitignore ├── LICENSE.txt ├── README.md ├── Releases ├── JdSdk2.NET 2014.01.02.zip ├── JdSdk2.NET 2014.01.16.zip ├── JdSdk2.NET 2014.02.23.zip ├── JdSdk2.NET 2014.04.12.zip ├── JdSdk2.NET 2014.04.15.zip └── JdSdk2.NET 2014.05.31.zip └── Source ├── ClickToBuild.cmd ├── JdSdk ├── AccessToken.cs ├── DefaultJdClient.cs ├── DefaultJdLogger.cs ├── IJdClient.cs ├── IJdLogger.cs ├── IJdRequest.cs ├── IJdUploadRequest.cs ├── JdDictionary.cs ├── JdException.cs ├── JdObject.cs ├── JdRequestBase.cs ├── JdResponse.cs ├── JdSdk.Net20.csproj ├── JdSdk.Net40.csproj ├── JdSdk2.snk ├── OAuth.cs ├── Parser │ ├── DateTimeConverter.cs │ ├── IJdParser.cs │ ├── JdAttribute.cs │ ├── JdJsonParser.cs │ └── JdXmlParser.cs ├── Properties │ └── AssemblyInfo.cs ├── UniversalRequest.cs ├── UniversalResponse.cs ├── Util │ ├── FileItem.cs │ ├── JdUtils.cs │ ├── RequestValidator.cs │ └── WebUtils.cs ├── domain │ ├── O2O │ │ └── StoreOFCService │ │ │ ├── OrderServiceResponse.cs │ │ │ └── SkuAddResponse.cs │ ├── after │ │ ├── ReturnGoods.cs │ │ ├── ReturnInfo.cs │ │ └── ReturnItem.cs │ ├── category │ │ ├── AttValue.cs │ │ ├── Category.cs │ │ ├── Group.cs │ │ └── ShopCategoryInfo.cs │ ├── delivery │ │ ├── LogisticsCompanies.cs │ │ ├── LogisticsCompany.cs │ │ └── OrderInfoJosService │ │ │ ├── GetResultInfoDTO.cs │ │ │ └── SendResultInfoDTO.cs │ ├── im │ │ └── ApiService │ │ │ ├── ChatLog.cs │ │ │ └── ChatLogPage.cs │ ├── kuaiche │ │ ├── AccountJosService │ │ │ ├── AccountVO.cs │ │ │ ├── IncomeExpenseVO.cs │ │ │ └── PageInfo.cs │ │ └── ZnJosPlanService │ │ │ ├── KeywordVO.cs │ │ │ └── ResultStatus.cs │ ├── mobile │ │ └── PromotionsOpenService │ │ │ ├── Activit.cs │ │ │ └── ActivityList.cs │ ├── order │ │ ├── CouponDetail.cs │ │ ├── ItemInfo.cs │ │ ├── OrderDetailInfo.cs │ │ ├── OrderDetailInfos.cs │ │ ├── OrderInfo.cs │ │ ├── OrderLbpPrintData.cs │ │ ├── OrderPrintData.cs │ │ ├── OrderPrintDataConsignee.cs │ │ ├── OrderPrintDataWare.cs │ │ ├── OrderResult.cs │ │ ├── OrderSearchInfo.cs │ │ ├── OrderSopPrintData.cs │ │ ├── OrderSoplPrintData.cs │ │ ├── OrderUserInfo.cs │ │ ├── PrintResult.cs │ │ ├── UserInfo.cs │ │ └── VatInvoiceInfo.cs │ ├── seller │ │ └── ShopSafService │ │ │ └── ShopJosResult.cs │ ├── sellercat │ │ └── ShopCategory.cs │ ├── service │ │ ├── AfsServiceConfFacade │ │ │ ├── AfsCategoryOut.cs │ │ │ ├── AfsCategoryOutMajor.cs │ │ │ ├── PublicResultObjectAfsCategory.cs │ │ │ └── PublicResultObjectMajorCategory.cs │ │ ├── AfsServiceManagerFacade │ │ │ ├── AfsApplyWaitAudit.cs │ │ │ ├── AfsApplyWaitFetch.cs │ │ │ ├── AfsFreightUpdateResult.cs │ │ │ ├── AfsPopApplyFetchWaitAudit.cs │ │ │ ├── AfsPopApplyFetchWaitFetch.cs │ │ │ ├── AfsServiceAuditRejectResult.cs │ │ │ ├── AfsServiceRemarkAddResult.cs │ │ │ ├── AfsServiceWaitAudit.cs │ │ │ ├── AfsServiceWaitFetch.cs │ │ │ ├── CustomerFeedbackTransferResult.cs │ │ │ ├── JdInterveneResult.cs │ │ │ ├── PageWaitAuditTask.cs │ │ │ ├── PageWaitFetch.cs │ │ │ ├── PublicResultObjectWaitAuditTask.cs │ │ │ ├── PublicResultObjectWaitFetch.cs │ │ │ ├── ReturnAddResult.cs │ │ │ ├── ReturnCancelResult.cs │ │ │ └── TrackMessageReplyResult.cs │ │ ├── AfsServiceProcessFacade │ │ │ ├── AfsFinanceDetailOut.cs │ │ │ ├── AfsFinanceOut.cs │ │ │ ├── AfsMessageOut.cs │ │ │ ├── AfsRefundInfoOut.cs │ │ │ ├── AfsRefundOut.cs │ │ │ ├── AfsServiceHistory.cs │ │ │ ├── AfsSignatureOut.cs │ │ │ ├── PartReceiveOut.cs │ │ │ ├── PublicResultListAfsServiceHistory.cs │ │ │ ├── PublicResultListMessageSystemInfo.cs │ │ │ ├── PublicResultObjectRefundInfo.cs │ │ │ └── PublicResultObjectUnpackingInfo.cs │ │ └── RefundapplySaf │ │ │ ├── QueryMap.cs │ │ │ └── RefundapplyResponse.cs │ ├── sku │ │ └── OfflineOrderSafService │ │ │ └── ApiJosResult.cs │ ├── supplier │ │ ├── JosStockSalesService │ │ │ ├── JosStockSales.cs │ │ │ └── JosStockSalesDetail.cs │ │ ├── PurchaseOrderJosAPI │ │ │ ├── DetailResultDto.cs │ │ │ ├── OrderResultDto.cs │ │ │ ├── PurchaseAllocationDetailDto.cs │ │ │ ├── PurchaseOrderDto.cs │ │ │ └── PurchaseWarePropertyDto.cs │ │ └── ReturnOrderJosAPI │ │ │ ├── DetailResultDto.cs │ │ │ ├── RoDetailDto.cs │ │ │ ├── RoDto.cs │ │ │ └── RoResultDto.cs │ ├── udp │ │ ├── ShopSalesTop15Interface │ │ │ ├── ShopSalesTop15Response.cs │ │ │ └── ShopSalesTop15ResultDTO.cs │ │ ├── ShopVisTop15Interface │ │ │ ├── ShopVisTop15Response.cs │ │ │ └── ShopVistResultDTO.cs │ │ └── ShopVolTop15Interface │ │ │ ├── ShopVolResultDTO.cs │ │ │ └── ShopVolTop15Response.cs │ ├── vender │ │ └── Vender.cs │ ├── ware │ │ ├── Sku.cs │ │ ├── Ware.cs │ │ ├── WareAreaLimit.cs │ │ ├── WarePropimg.cs │ │ └── WareTemplate.cs │ ├── website │ │ ├── category │ │ │ ├── AttributeValue.cs │ │ │ ├── WareAttribute.cs │ │ │ └── WareCategory.cs │ │ ├── cps │ │ │ ├── CPSSpreadHomeInfoModule.cs │ │ │ ├── JingdongrenWare.cs │ │ │ ├── JingdongrenWareDetail.cs │ │ │ ├── PromoteWare.cs │ │ │ └── PromoteWareDetail.cs │ │ ├── order │ │ │ ├── CanBuyAddress.cs │ │ │ └── OrderCreateResult.cs │ │ ├── recommend │ │ │ └── FavoriteWare.cs │ │ ├── request │ │ │ ├── OrderCanBuyAreaRequest.cs │ │ │ ├── OrderCanBuyCityRequest.cs │ │ │ ├── OrderCanBuyProvinceRequest.cs │ │ │ ├── OrderCanBuyTownRequest.cs │ │ │ └── OrderCreateRequest.cs │ │ ├── response │ │ │ ├── OrderCanBuyAreaResponse.cs │ │ │ ├── OrderCanBuyCityResponse.cs │ │ │ ├── OrderCanBuyProvinceResponse.cs │ │ │ ├── OrderCanBuyTownResponse.cs │ │ │ └── OrderCreateResponse.cs │ │ └── ware │ │ │ ├── Region.cs │ │ │ ├── Sku.cs │ │ │ ├── Ware.cs │ │ │ └── WareImg.cs │ ├── weigou │ │ └── PaymentShipmentExportService │ │ │ ├── CombinationPaymentVO.cs │ │ │ ├── GetPaymentListResult.cs │ │ │ └── PaymentVO.cs │ ├── wms │ │ └── WmsProductionServices │ │ │ ├── ReceivingTask.cs │ │ │ └── ResponseOrderOtherDetail.cs │ └── zhijian │ │ ├── QTArticleService │ │ ├── QTArticle.cs │ │ └── QtArticleResult.cs │ │ └── QTReportService │ │ ├── AddResult.cs │ │ ├── GetResult.cs │ │ ├── QTReportVO.cs │ │ ├── ReportDeleteResult.cs │ │ ├── ReportsResult.cs │ │ └── UpdateResult.cs ├── packages.config ├── request │ ├── Field.cs │ ├── O2O │ │ ├── LogisticsO2oAnti_dispatchUpdateRequest.cs │ │ └── LogisticsO2oSkuStock_ownerUpdateRequest.cs │ ├── address │ │ ├── AreaCityGetRequest.cs │ │ ├── AreaCountyGetRequest.cs │ │ ├── AreaIpQueryRequest.cs │ │ ├── AreaProvinceGetRequest.cs │ │ ├── AreaTownGetRequest.cs │ │ └── AreasGetRequest.cs │ ├── after │ │ ├── AfterSearchRequest.cs │ │ └── AfterStateUpdateRequest.cs │ ├── category │ │ ├── BrandsGetRequest.cs │ │ ├── CategoryAttributeSearchRequest.cs │ │ ├── CategoryAttributeValueSearchRequest.cs │ │ ├── CategoryGroupSearchRequest.cs │ │ ├── CategoryResult.cs │ │ ├── CategorySearchRequest.cs │ │ ├── EccCategoryAddRequest.cs │ │ ├── EccCategoryChildsListGetRequest.cs │ │ ├── EccCategoryDeleteRequest.cs │ │ ├── EccCategoryGetRequest.cs │ │ ├── EccCategoryListGetRequest.cs │ │ ├── EccCategoryParentsListGetRequest.cs │ │ └── EccCategoryUpdateRequest.cs │ ├── cps │ │ ├── UnionActivityCodeGetRequest.cs │ │ ├── UnionAdvdetailGetRequest.cs │ │ ├── UnionCategoryinfoSearchRequest.cs │ │ ├── UnionGoodsCodeGetRequest.cs │ │ ├── UnionMasterAccountGetRequest.cs │ │ ├── UnionMasterBillSearchRequest.cs │ │ ├── UnionPlanSaveRequest.cs │ │ ├── UnionPlanbaseinfoGetRequest.cs │ │ ├── UnionPlandetailGetRequest.cs │ │ ├── UnionPlanlistSearchRequest.cs │ │ ├── UnionPromotionactivityQueryRequest.cs │ │ ├── UnionPromotiongoodQueryRequest.cs │ │ ├── UnionPromotionreportQueryRequest.cs │ │ ├── UnionPromotionshopQueryRequest.cs │ │ ├── UnionPromotionshopUpdateRequest.cs │ │ ├── UnionReportOverviewSearchRequest.cs │ │ ├── UnionReportWindowSearchRequest.cs │ │ ├── UnionShopCodeGetRequest.cs │ │ ├── UnionZoneCodeGetRequest.cs │ │ └── UnionZoneInfoGetRequest.cs │ ├── delivery │ │ ├── DeliveryLogisticsGetRequest.cs │ │ ├── EtmsTraceGetRequest.cs │ │ ├── EtmsWaybillSendRequest.cs │ │ └── EtmsWaybillcodeGetRequest.cs │ ├── im │ │ ├── ImPopChatlogFuzzyQueryRequest.cs │ │ ├── ImPopChatlogGetRequest.cs │ │ ├── ImPopConsultAvgwaittimeGetRequest.cs │ │ ├── ImPopEvaluationlistGetRequest.cs │ │ ├── ImPopEvaluationstatGetRequest.cs │ │ ├── ImPopGroupinfoGetRequest.cs │ │ ├── ImPopPasslogGetRequest.cs │ │ ├── ImPopReplystatGetRequest.cs │ │ ├── ImPopSessionlistGetRequest.cs │ │ ├── ImPopUnreplystatGetRequest.cs │ │ └── ImPopWaiterOnlinetimeStatGetRequest.cs │ ├── imgzone │ │ ├── ImgzoneCategoryAddRequest.cs │ │ ├── ImgzoneCategoryQueryRequest.cs │ │ ├── ImgzoneCategoryUpdateRequest.cs │ │ ├── ImgzonePictureDeleteRequest.cs │ │ ├── ImgzonePictureIsreferencedRequest.cs │ │ ├── ImgzonePictureQueryRequest.cs │ │ ├── ImgzonePictureReplaceRequest.cs │ │ ├── ImgzonePictureUpdateRequest.cs │ │ ├── ImgzonePictureUploadRequest.cs │ │ └── ImgzoneUserinfoQueryRequest.cs │ ├── kuaiche │ │ ├── KuaicheAccountGetRequest.cs │ │ ├── KuaicheAccountIncomexpenseSearchRequest.cs │ │ ├── KuaicheGoodsGetRequest.cs │ │ ├── KuaichePopGetRequest.cs │ │ ├── KuaicheZnBidRankGetRequest.cs │ │ ├── KuaicheZnKeywordgroupListSearchRequest.cs │ │ ├── KuaicheZnMaterialLabelsSearchRequest.cs │ │ ├── KuaicheZnPlanChannelCreateRequest.cs │ │ ├── KuaicheZnPlanChannelModifyRequest.cs │ │ ├── KuaicheZnPlanDetailGetRequest.cs │ │ ├── KuaicheZnPlanListSearchRequest.cs │ │ ├── KuaicheZnPlanSearchCreateRequest.cs │ │ ├── KuaicheZnPlanSearchKeywordAddRequest.cs │ │ ├── KuaicheZnPlanSearchKeywordDeleteRequest.cs │ │ ├── KuaicheZnPlanSearchKeywordGetRequest.cs │ │ ├── KuaicheZnPlanSearchKeywordUpdateRequest.cs │ │ ├── KuaicheZnPlanSearchModifyRequest.cs │ │ ├── KuaicheZnScheduleAvailableSearchRequest.cs │ │ ├── KuaicheZnScheduleBidDetailSearchRequest.cs │ │ ├── KuaicheZnSpaceInfoSearchRequest.cs │ │ └── KuaicheZnSpacePageByTypeSearchRequest.cs │ ├── list │ │ ├── WareCatelogyAttributeListGetRequest.cs │ │ └── WareProductCatelogyListGetRequest.cs │ ├── mall │ │ ├── EccMallMallbannercenterAddRequest.cs │ │ ├── EccMallMallbannercenterDeleteRequest.cs │ │ ├── EccMallMallbannercenterSearchRequest.cs │ │ ├── EccMallMallbannercenterUpdateRequest.cs │ │ ├── EccMallMallinfocenterAddRequest.cs │ │ ├── EccMallMallinfocenterGetRequest.cs │ │ ├── EccMallMallinfocenterUpdateRequest.cs │ │ ├── EccMallRecommendDeleteRequest.cs │ │ ├── EccMallRecommendListGetRequest.cs │ │ └── EccMallRecommendUpdateRequest.cs │ ├── market │ │ └── VasSubscribeGetRequest.cs │ ├── marketing │ │ ├── SellerPromotionActivitymodeAddRequest.cs │ │ ├── SellerPromotionActivitymodeGetRequest.cs │ │ ├── SellerPromotionAddRequest.cs │ │ ├── SellerPromotionCheckRequest.cs │ │ ├── SellerPromotionCommitRequest.cs │ │ ├── SellerPromotionDeleteRequest.cs │ │ ├── SellerPromotionGetRequest.cs │ │ ├── SellerPromotionListRequest.cs │ │ ├── SellerPromotionOrdermodeAddRequest.cs │ │ ├── SellerPromotionOrdermodeListRequest.cs │ │ ├── SellerPromotionPropAddRequest.cs │ │ ├── SellerPromotionPropListRequest.cs │ │ ├── SellerPromotionResumeRequest.cs │ │ ├── SellerPromotionSkuAddRequest.cs │ │ ├── SellerPromotionSkuListRequest.cs │ │ └── SellerPromotionSuspendRequest.cs │ ├── mobile │ │ ├── WareBarcodeWareidGetRequest.cs │ │ ├── WarePromotionActivitiesListGetRequest.cs │ │ ├── WarePromotionActivitywareListGetRequest.cs │ │ ├── WarePromotionCategorywareListGetRequest.cs │ │ └── WarePromotionIndexactivityListGetRequest.cs │ ├── order │ │ ├── OrderFbpGetRequest.cs │ │ ├── OrderFbpSearchRequest.cs │ │ ├── OrderGetRequest.cs │ │ ├── OrderLbpOutstorageRequest.cs │ │ ├── OrderLbpPrintDataGetRequest.cs │ │ ├── OrderLbpWaybillUpdateRequest.cs │ │ ├── OrderLogisticsSearchRequest.cs │ │ ├── OrderPrintDataGetRequest.cs │ │ ├── OrderPrintRequest.cs │ │ ├── OrderSearchRequest.cs │ │ ├── OrderSopOutstorageRequest.cs │ │ ├── OrderSopPrintDataGetRequest.cs │ │ ├── OrderSopWaybillUpdateRequest.cs │ │ ├── OrderSoplOutstorageRequest.cs │ │ ├── OrderSoplPrintDataGetRequest.cs │ │ ├── OrderSoplWaybillUpdateRequest.cs │ │ ├── OrderVenderRemarkUpdateRequest.cs │ │ ├── OverseasOrderSopDeliveryRequest.cs │ │ └── OverseasOrderSopOutstorageRequest.cs │ ├── photo │ │ ├── EccPhotoAddRequest.cs │ │ └── PhotoProxyResult.cs │ ├── price │ │ ├── WarePriceGetRequest.cs │ │ └── WarePromotionInfoGetRequest.cs │ ├── promotion │ │ └── PromotionSearchRequest.cs │ ├── recommend │ │ ├── WareBrowsetobuyListGetRequest.cs │ │ ├── WareBuytobuyListGetRequest.cs │ │ ├── WareCombineListGetRequest.cs │ │ └── WarePacksGetRequest.cs │ ├── seller │ │ ├── PopVenderCenerVenderBrandQueryRequest.cs │ │ ├── SellerVenderInfoGetRequest.cs │ │ └── VenderShopQueryRequest.cs │ ├── sellercat │ │ ├── SellerCatAddRequest.cs │ │ ├── SellerCatDeleteRequest.cs │ │ ├── SellerCatUpdateRequest.cs │ │ └── SellerCatsGetRequest.cs │ ├── service │ │ ├── AfsserviceAlltaskGetRequest.cs │ │ ├── AfsserviceAuditRejectRequest.cs │ │ ├── AfsserviceCategoryGetRequest.cs │ │ ├── AfsserviceCustomerfeedbackTransferRequest.cs │ │ ├── AfsserviceFinishedtaskGetRequest.cs │ │ ├── AfsserviceFreightUpdateRequest.cs │ │ ├── AfsserviceFreightmessageGetRequest.cs │ │ ├── AfsserviceHistoryGetRequest.cs │ │ ├── AfsserviceJdInterveneRequest.cs │ │ ├── AfsserviceMajorcategoryGetRequest.cs │ │ ├── AfsserviceMessagesystemGetRequest.cs │ │ ├── AfsserviceOriginalorderidGetRequest.cs │ │ ├── AfsserviceReceivetaskGetRequest.cs │ │ ├── AfsserviceRefundinfoGetRequest.cs │ │ ├── AfsserviceRemarkAddRequest.cs │ │ ├── AfsserviceReturnAddRequest.cs │ │ ├── AfsserviceReturnCancelRequest.cs │ │ ├── AfsserviceServicedetailListRequest.cs │ │ ├── AfsserviceServiceinfoGetRequest.cs │ │ ├── AfsserviceServicelogGetRequest.cs │ │ ├── AfsserviceTrackmessageReplayRequest.cs │ │ ├── AfsserviceUnpackinginfoGetRequest.cs │ │ ├── AfsserviceUnresolvedtaskGetRequest.cs │ │ ├── AfsserviceWaitauditGetRequest.cs │ │ ├── AfsserviceWaitfetchGetRequest.cs │ │ ├── AfsserviceWaitprocesstaskGetRequest.cs │ │ ├── PopAfsRefundapplyQuerybyidRequest.cs │ │ └── PopAfsRefundapplyQuerylistRequest.cs │ ├── sku │ │ ├── OrderOrderDeleteApplyRequest.cs │ │ ├── OrderOrderDeleteCancelApplyRequest.cs │ │ └── OrderVenderRemarkQueryByOrderIdRequest.cs │ ├── supplier │ │ ├── DropshipDpsCurrenttimeRequest.cs │ │ ├── DropshipDpsDeliveryRequest.cs │ │ ├── DropshipDpsOutboundRequest.cs │ │ ├── DropshipDpsPrerefundRequest.cs │ │ ├── DropshipDpsRefuseRequest.cs │ │ ├── DropshipDpsSearchRequest.cs │ │ ├── DropshipDpsSearchpreRequest.cs │ │ ├── DropshipDpsSearchsingleRequest.cs │ │ ├── PoDetailPageGetRequest.cs │ │ ├── PoListPageGetRequest.cs │ │ ├── ProcurementOrderConfirmRequest.cs │ │ ├── ProcurementOrderCreateRequest.cs │ │ ├── UserCategory3InfoGetRequest.cs │ │ ├── VcCreateReturnOrderRequest.cs │ │ ├── VcGetReturnOrderDetailRequest.cs │ │ ├── VcReturnOrderListPageGetRequest.cs │ │ ├── VcStockSalesDetailGetRequest.cs │ │ └── VcStockSalesGetRequest.cs │ ├── tools │ │ └── TimeGetRequest.cs │ ├── udp │ │ ├── DataserviceFwlistpvGetRequest.cs │ │ ├── DataserviceFwreferpvGetRequest.cs │ │ ├── DataserviceShoppvtop15bydayGetRequest.cs │ │ ├── DataserviceShoppvtop15bymonthGetRequest.cs │ │ ├── DataserviceShoppvtop15byweekGetRequest.cs │ │ ├── DataserviceShopsalesbydayGetRequest.cs │ │ ├── DataserviceShopsalesbymonthGetRequest.cs │ │ ├── DataserviceShopsalesbyweekGetRequest.cs │ │ ├── DataserviceShopsalestop15bydayGetRequest.cs │ │ ├── DataserviceShopsalestop15bymonthGetRequest.cs │ │ ├── DataserviceShopsalestop15byweekGetRequest.cs │ │ ├── DataserviceShopuvtop15bydayGetRequest.cs │ │ ├── DataserviceShopuvtop15bymonthGetRequest.cs │ │ ├── DataserviceShopuvtop15byweekGetRequest.cs │ │ ├── DataserviceShopvistop15bydayGetRequest.cs │ │ ├── DataserviceShopvistop15bymonthGetRequest.cs │ │ ├── DataserviceShopvistop15byweekGetRequest.cs │ │ ├── DataserviceShopvoltop15bydayGetRequest.cs │ │ ├── DataserviceShopvoltop15bymonthGetRequest.cs │ │ └── DataserviceShopvoltop15byweekGetRequest.cs │ ├── user │ │ ├── EccUserGetRequest.cs │ │ └── EccUserSearchRequest.cs │ ├── vender │ │ └── VenderGetRequest.cs │ ├── ware │ │ ├── EccItemAddRequest.cs │ │ ├── EccItemDelistingRequest.cs │ │ ├── EccItemGetRequest.cs │ │ ├── EccItemListingRequest.cs │ │ ├── EccItemSearchRequest.cs │ │ ├── EccItemUpdateRequest.cs │ │ ├── EccSkuGetRequest.cs │ │ ├── EccSkuSearchRequest.cs │ │ ├── ItemSkuResult.cs │ │ ├── SkuCustomGetRequest.cs │ │ ├── WareAddRequest.cs │ │ ├── WareAddVenderSellSkuRequest.cs │ │ ├── WareAreaLimitSearchRequest.cs │ │ ├── WareAreaLimitUpdateRequest.cs │ │ ├── WareBasebookGetRequest.cs │ │ ├── WareBaseproductGetRequest.cs │ │ ├── WareBasevideoGetRequest.cs │ │ ├── WareBookbigfieldGetRequest.cs │ │ ├── WareDeleteRequest.cs │ │ ├── WareDelistingGetRequest.cs │ │ ├── WareGetRequest.cs │ │ ├── WareInfoByInfoRequest.cs │ │ ├── WareListRequest.cs │ │ ├── WareListSearchRequest.cs │ │ ├── WareListingGetRequest.cs │ │ ├── WareProductDetailSearchListGetRequest.cs │ │ ├── WareProductSearchListGetRequest.cs │ │ ├── WareProductStockListGetRequest.cs │ │ ├── WareProductbigfieldGetRequest.cs │ │ ├── WareProductimageGetRequest.cs │ │ ├── WareProductsortGetRequest.cs │ │ ├── WarePromotionSearchCatelogyListRequest.cs │ │ ├── WarePropimgAddRequest.cs │ │ ├── WarePropimgDeleteRequest.cs │ │ ├── WarePropimgUpdateRequest.cs │ │ ├── WarePropimgsGetRequest.cs │ │ ├── WarePropimgsSearchRequest.cs │ │ ├── WareSelectedProvinceListGetRequest.cs │ │ ├── WareSkuAddRequest.cs │ │ ├── WareSkuDeleteRequest.cs │ │ ├── WareSkuGetRequest.cs │ │ ├── WareSkuPriceUpdateRequest.cs │ │ ├── WareSkuSearchListGetRequest.cs │ │ ├── WareSkuStockUpdateRequest.cs │ │ ├── WareSkuUpdateRequest.cs │ │ ├── WareSkusGetRequest.cs │ │ ├── WareTemplateAddRequest.cs │ │ ├── WareTemplateDeleteRequest.cs │ │ ├── WareTemplateGetRequest.cs │ │ ├── WareTemplateIdsAndNamesGetRequest.cs │ │ ├── WareTemplateToWaresUpdateRequest.cs │ │ ├── WareTemplateUpdateRequest.cs │ │ ├── WareUpdateDelistingRequest.cs │ │ ├── WareUpdateListingRequest.cs │ │ ├── WareUpdateRequest.cs │ │ ├── WareUpdateVenderSellSkuRequest.cs │ │ └── WareVideobigfieldGetRequest.cs │ ├── website │ │ ├── category │ │ │ ├── WareAttributesGetRequest.cs │ │ │ └── WareCategoryGetRequest.cs │ │ ├── cps │ │ │ ├── CPSCatalogPageGetRequest.cs │ │ │ ├── CPSSpreadHomeInfoRequest.cs │ │ │ └── CPSWareDetailPageGetRequest.cs │ │ ├── recommend │ │ │ ├── AnotherBuyCombineRecommendRequest.cs │ │ │ ├── CombineRecommendRequest.cs │ │ │ └── UserBrowseBuyRecommendRequest.cs │ │ └── ware │ │ │ ├── RegionInfoGetRequest.cs │ │ │ ├── SkuJdPriceGetRequest.cs │ │ │ ├── WareGetRequest.cs │ │ │ ├── WareSearchByCidRequst.cs │ │ │ └── WareSearchRequst.cs │ ├── weigou │ │ └── OrderPaymentGetRequest.cs │ ├── wms │ │ ├── LogisticsCarriersListRequest.cs │ │ ├── LogisticsOrderAddRequest.cs │ │ ├── LogisticsOrderDeleteRequest.cs │ │ ├── LogisticsOrderGetRequest.cs │ │ ├── LogisticsOrderSearchRequest.cs │ │ ├── LogisticsOtherInstoreAddRequest.cs │ │ ├── LogisticsOtherInstoreQueryRequest.cs │ │ ├── LogisticsOtherOutstoreAddRequest.cs │ │ ├── LogisticsOtherOutstoreQueryRequest.cs │ │ ├── LogisticsOtherOutstoreQueryreturnbarcodeRequest.cs │ │ ├── LogisticsPoAddRequest.cs │ │ ├── LogisticsPoGetRequest.cs │ │ ├── LogisticsPoGetreturnbacodeRequest.cs │ │ ├── LogisticsReturnorderAddRequest.cs │ │ ├── LogisticsReturnorderCancelRequest.cs │ │ ├── LogisticsReturnorderQueryRequest.cs │ │ ├── LogisticsSkuAddRequest.cs │ │ ├── LogisticsSkuQueryRequest.cs │ │ ├── LogisticsSkuUpdateRequest.cs │ │ ├── LogisticsStockSearchRequest.cs │ │ └── LogisticsWarehouseListRequest.cs │ ├── workorder │ │ ├── RestWorkorderReplyRequest.cs │ │ ├── WosSubbiztypelistGetRequest.cs │ │ ├── WosWorkinfoGetRequest.cs │ │ └── WosWorklistGetRequest.cs │ └── zhijian │ │ ├── MarketServiceQtReportAddRequest.cs │ │ ├── MarketServiceQtReportDeleteRequest.cs │ │ ├── MarketServiceQtReportGetRequest.cs │ │ ├── MarketServiceQtReportListGetRequest.cs │ │ ├── MarketServiceQtReportUpdateRequest.cs │ │ └── MarketServiceQtSubscribeGetRequest.cs └── response │ ├── O2O │ ├── LogisticsO2oAnti_dispatchUpdateResponse.cs │ └── LogisticsO2oSkuStock_ownerUpdateResponse.cs │ ├── address │ ├── AreaCityGetResponse.cs │ ├── AreaCountyGetResponse.cs │ ├── AreaIpQueryResponse.cs │ ├── AreaListBeanVO.cs │ ├── AreaProvinceGetResponse.cs │ ├── AreaTownGetResponse.cs │ ├── AreasGetResponse.cs │ ├── IpLookupResponse.cs │ ├── JosAreaListBeanVO.cs │ └── Location.cs │ ├── after │ ├── AfterSearchResponse.cs │ └── AfterStateUpdateResponse.cs │ ├── category │ ├── BrandsGetResponse.cs │ ├── CategoryAttributeSearchResponse.cs │ ├── CategoryAttributeValueSearchResponse.cs │ ├── CategoryGroupSearchResponse.cs │ ├── CategorySearchResponse.cs │ ├── EccCategoryAddResponse.cs │ ├── EccCategoryChildsListGetResponse.cs │ ├── EccCategoryDeleteResponse.cs │ ├── EccCategoryGetResponse.cs │ ├── EccCategoryListGetResponse.cs │ ├── EccCategoryParentsListGetResponse.cs │ └── EccCategoryUpdateResponse.cs │ ├── cps │ ├── ActivityImageCode.cs │ ├── ActivityImgSafVo.cs │ ├── ActivitySafVo.cs │ ├── AdZoneVo.cs │ ├── AdvDetailVo.cs │ ├── CategoryCommisionVO.cs │ ├── EffectReportSafVo.cs │ ├── GoodSafVo.cs │ ├── GoodsVO.cs │ ├── JosActivityImgVO.cs │ ├── JosGoodsVO.cs │ ├── MasterBillVo.cs │ ├── OverviewVo.cs │ ├── PlanInfoVO.cs │ ├── PlanListVO.cs │ ├── PlanVO.cs │ ├── PromotionActivityVO.cs │ ├── PromotionGoodsVO.cs │ ├── PromotionPlanVO.cs │ ├── PromotionShopVO.cs │ ├── ResultVO.cs │ ├── ShopSafVo.cs │ ├── UnionActivityCodeGetResponse.cs │ ├── UnionActivityimg.cs │ ├── UnionAdvdetailGetResponse.cs │ ├── UnionCategoryCommision.cs │ ├── UnionCategoryinfoSearchResponse.cs │ ├── UnionGoodsCodeGetResponse.cs │ ├── UnionMasterAccountGetResponse.cs │ ├── UnionMasterBillSearchResponse.cs │ ├── UnionPlan.cs │ ├── UnionPlanActivity.cs │ ├── UnionPlanSaveResponse.cs │ ├── UnionPlanbaseinfoGetResponse.cs │ ├── UnionPlandetailGetResponse.cs │ ├── UnionPlanlistSearchResponse.cs │ ├── UnionPromotionactivityQueryResponse.cs │ ├── UnionPromotiongoodQueryResponse.cs │ ├── UnionPromotionreportQueryResponse.cs │ ├── UnionPromotionshopQueryResponse.cs │ ├── UnionPromotionshopUpdateResponse.cs │ ├── UnionReportOverviewSearchResponse.cs │ ├── UnionReportWindowSearchResponse.cs │ ├── UnionShopCodeGetResponse.cs │ ├── UnionZoneCodeGetResponse.cs │ ├── UnionZoneInfoGetResponse.cs │ └── WindowAdvDetail.cs │ ├── delivery │ ├── DeliveryLogisticsGetResponse.cs │ ├── EtmsTraceGetResponse.cs │ ├── EtmsWaybillSendResponse.cs │ ├── EtmsWaybillcodeGetResponse.cs │ └── TraceApiDto.cs │ ├── im │ ├── ChatSession.cs │ ├── Evaluation.cs │ ├── ImPopChatlogFuzzyQueryResponse.cs │ ├── ImPopChatlogGetResponse.cs │ ├── ImPopConsultAvgwaittimeGetResponse.cs │ ├── ImPopEvaluationlistGetResponse.cs │ ├── ImPopEvaluationstatGetResponse.cs │ ├── ImPopGroupinfoGetResponse.cs │ ├── ImPopPasslogGetResponse.cs │ ├── ImPopReplystatGetResponse.cs │ ├── ImPopSessionlistGetResponse.cs │ ├── ImPopUnreplystatGetResponse.cs │ ├── ImPopWaiterOnlinetimeStatGetResponse.cs │ ├── POPGroup.cs │ ├── PassLog.cs │ ├── Waiter.cs │ ├── WaiterDailyEvaStat.cs │ └── WaiterDailyStat.cs │ ├── imgzone │ ├── ImgzoneCategory.cs │ ├── ImgzoneCategoryAddResponse.cs │ ├── ImgzoneCategoryQueryResponse.cs │ ├── ImgzoneCategoryUpdateResponse.cs │ ├── ImgzoneImgInfo.cs │ ├── ImgzonePictureDeleteResponse.cs │ ├── ImgzonePictureIsreferencedResponse.cs │ ├── ImgzonePictureQueryResponse.cs │ ├── ImgzonePictureReplaceResponse.cs │ ├── ImgzonePictureUpdateResponse.cs │ ├── ImgzonePictureUploadResponse.cs │ ├── ImgzoneUserinfoQueryResponse.cs │ └── ImgzoneZoneInfo.cs │ ├── kuaiche │ ├── CommodityInfo.cs │ ├── CommoditySpu.cs │ ├── JosGoodsInfo.cs │ ├── JosSkuInfo.cs │ ├── KeywordGroup.cs │ ├── KeywordQueryVO.cs │ ├── KuaicheAccountGetResponse.cs │ ├── KuaicheAccountIncomexpenseSearchResponse.cs │ ├── KuaicheGoodsGetResponse.cs │ ├── KuaichePopGetResponse.cs │ ├── KuaicheZnBidRankGetResponse.cs │ ├── KuaicheZnKeywordgroupListSearchResponse.cs │ ├── KuaicheZnMaterialLabelsSearchResponse.cs │ ├── KuaicheZnPlanChannelCreateResponse.cs │ ├── KuaicheZnPlanChannelModifyResponse.cs │ ├── KuaicheZnPlanDetailGetResponse.cs │ ├── KuaicheZnPlanListSearchResponse.cs │ ├── KuaicheZnPlanSearchCreateResponse.cs │ ├── KuaicheZnPlanSearchKeywordAddResponse.cs │ ├── KuaicheZnPlanSearchKeywordDeleteResponse.cs │ ├── KuaicheZnPlanSearchKeywordGetResponse.cs │ ├── KuaicheZnPlanSearchKeywordUpdateResponse.cs │ ├── KuaicheZnPlanSearchModifyResponse.cs │ ├── KuaicheZnScheduleAvailableSearchResponse.cs │ ├── KuaicheZnScheduleBidDetailSearchResponse.cs │ ├── KuaicheZnSpaceInfoSearchResponse.cs │ ├── KuaicheZnSpacePageByTypeSearchResponse.cs │ ├── MaterialLabelVO.cs │ ├── MaterialLableJO.cs │ ├── PlanDetailInfo.cs │ ├── PlanMainInfo.cs │ ├── PopDetailJos.cs │ ├── QueryPlanReturnInfo.cs │ ├── RankReturnJO.cs │ ├── ResultStatus.cs │ ├── SelectedKeywordInfo.cs │ ├── SpaceInfo.cs │ └── SpacePageInfo.cs │ ├── list │ ├── Catelogy.cs │ ├── CatelogyAttributeList.cs │ ├── ExpandSorts.cs │ ├── ItemVO.cs │ ├── ItemVO2.cs │ ├── Items.cs │ ├── ProductCatelogyList.cs │ ├── WareCatelogyAttributeListGetResponse.cs │ └── WareProductCatelogyListGetResponse.cs │ ├── mall │ ├── EccMallMallbannercenterAddResponse.cs │ ├── EccMallMallbannercenterDeleteResponse.cs │ ├── EccMallMallbannercenterSearchResponse.cs │ ├── EccMallMallbannercenterUpdateResponse.cs │ ├── EccMallMallinfocenterAddResponse.cs │ ├── EccMallMallinfocenterGetResponse.cs │ ├── EccMallMallinfocenterUpdateResponse.cs │ ├── EccMallRecommendAddResponse.cs │ ├── EccMallRecommendDeleteResponse.cs │ ├── EccMallRecommendListGetResponse.cs │ ├── EccMallRecommendUpdateResponse.cs │ ├── MallBannerResult.cs │ ├── MallInfoResult.cs │ ├── MallRecommendResult.cs │ └── MallRecommendWareResult.cs │ ├── market │ └── VasSubscribeGetResponse.cs │ ├── marketing │ ├── ActivityModeVO.cs │ ├── OrderModeVO.cs │ ├── PromoPropVO.cs │ ├── PromoSkuVO.cs │ ├── PromotionVO.cs │ ├── SellerPromotionActivitymodeAddResponse.cs │ ├── SellerPromotionActivitymodeGetResponse.cs │ ├── SellerPromotionAddResponse.cs │ ├── SellerPromotionCheckResponse.cs │ ├── SellerPromotionCommitResponse.cs │ ├── SellerPromotionDeleteResponse.cs │ ├── SellerPromotionGetResponse.cs │ ├── SellerPromotionListResponse.cs │ ├── SellerPromotionOrdermodeAddResponse.cs │ ├── SellerPromotionOrdermodeListResponse.cs │ ├── SellerPromotionPropAddResponse.cs │ ├── SellerPromotionPropListResponse.cs │ ├── SellerPromotionResumeResponse.cs │ ├── SellerPromotionSkuAddResponse.cs │ ├── SellerPromotionSkuListResponse.cs │ └── SellerPromotionSuspendResponse.cs │ ├── mobile │ ├── BarCode.cs │ ├── CmsActivity.cs │ ├── CmsActivityList.cs │ ├── CmsActivityWare.cs │ ├── CmsActivityWareList.cs │ ├── WareBarcodeWareidGetResponse.cs │ ├── WareInfo.cs │ ├── WareInfoList.cs │ ├── WarePromotionActivitiesListGetResponse.cs │ ├── WarePromotionActivitywareListGetResponse.cs │ ├── WarePromotionCategorywareListGetResponse.cs │ └── WarePromotionIndexactivityListGetResponse.cs │ ├── order │ ├── OrderFbpGetResponse.cs │ ├── OrderFbpSearchResponse.cs │ ├── OrderGetResponse.cs │ ├── OrderLbpOutstorageResponse.cs │ ├── OrderLbpPrintDataGetResponse.cs │ ├── OrderLbpWaybillUpdateResponse.cs │ ├── OrderLogisticsSearchResponse.cs │ ├── OrderPrintDataGetResponse.cs │ ├── OrderPrintResponse.cs │ ├── OrderSearchResponse.cs │ ├── OrderSopOutstorageResponse.cs │ ├── OrderSopPrintDataGetResponse.cs │ ├── OrderSopWaybillUpdateResponse.cs │ ├── OrderSoplOutstorageResponse.cs │ ├── OrderSoplPrintDataGetResponse.cs │ ├── OrderSoplWaybillUpdateResponse.cs │ ├── OrderVenderRemarkUpdateResponse.cs │ ├── OverseasOrderSopDeliveryResponse.cs │ └── OverseasOrderSopOutstorageResponse.cs │ ├── photo │ └── EccPhotoAddResponse.cs │ ├── price │ ├── AdwordCoupon.cs │ ├── AdwordGiftSku.cs │ ├── AdwordResponse.cs │ ├── PriceChange.cs │ ├── PromotionInfo.cs │ ├── WarePriceGetResponse.cs │ └── WarePromotionInfoGetResponse.cs │ ├── promotion │ ├── Promotion.cs │ ├── PromotionProduct.cs │ ├── PromotionSearch.cs │ └── PromotionSearchResponse.cs │ ├── recommend │ ├── BrowseBuyWidsList.cs │ ├── BuyToBuyWidsList.cs │ ├── CmsActivityWare.cs │ ├── CombineBuyingWidsList.cs │ ├── Packs.cs │ ├── PacksList.cs │ ├── Product.cs │ ├── WareBrowsetobuyListGetResponse.cs │ ├── WareBuytobuyListGetResponse.cs │ ├── WareCombineListGetResponse.cs │ └── WarePacksGetResponse.cs │ ├── seller │ ├── PopVenderCenerVenderBrandQueryResponse.cs │ ├── SellerVenderInfoGetResponse.cs │ ├── VenderBrandPubInfo.cs │ ├── VenderInfoResult.cs │ └── VenderShopQueryResponse.cs │ ├── sellercat │ ├── SellerCatAddResponse.cs │ ├── SellerCatDeleteResponse.cs │ ├── SellerCatUpdateResponse.cs │ └── SellerCatsGetResponse.cs │ ├── service │ ├── AfsFreightOut.cs │ ├── AfsLog.cs │ ├── AfsServiceDetail.cs │ ├── AfsServiceMessage.cs │ ├── AfsServiceOut.cs │ ├── AfsserviceAlltaskGetResponse.cs │ ├── AfsserviceAuditRejectResponse.cs │ ├── AfsserviceCategoryGetResponse.cs │ ├── AfsserviceCustomerfeedbackTransferResponse.cs │ ├── AfsserviceFinishedtaskGetResponse.cs │ ├── AfsserviceFreightUpdateResponse.cs │ ├── AfsserviceFreightmessageGetResponse.cs │ ├── AfsserviceHistoryGetResponse.cs │ ├── AfsserviceJdInterveneResponse.cs │ ├── AfsserviceMajorcategoryGetResponse.cs │ ├── AfsserviceMessagesystemGetResponse.cs │ ├── AfsserviceOriginalorderidGetResponse.cs │ ├── AfsserviceReceivetaskGetResponse.cs │ ├── AfsserviceRefundinfoGetResponse.cs │ ├── AfsserviceRemarkAddResponse.cs │ ├── AfsserviceReturnAddResponse.cs │ ├── AfsserviceReturnCancelResponse.cs │ ├── AfsserviceServicedetailListResponse.cs │ ├── AfsserviceServiceinfoGetResponse.cs │ ├── AfsserviceServicelogGetResponse.cs │ ├── AfsserviceTrackmessageReplayResponse.cs │ ├── AfsserviceUnpackinginfoGetResponse.cs │ ├── AfsserviceUnresolvedtaskGetResponse.cs │ ├── AfsserviceWaitauditGetResponse.cs │ ├── AfsserviceWaitfetchGetResponse.cs │ ├── AfsserviceWaitprocesstaskGetResponse.cs │ ├── PageAfsLog.cs │ ├── PageAllTask.cs │ ├── PageFinishedTask.cs │ ├── PageReceiveTask.cs │ ├── PageUnresolvedTask.cs │ ├── PageWaitProcessTask.cs │ ├── PopAfsRefundapplyQuerybyidResponse.cs │ ├── PopAfsRefundapplyQuerylistResponse.cs │ ├── PublicResultListAfsServiceDetail.cs │ ├── PublicResultObjectAfsFreight.cs │ ├── PublicResultObjectAfsLog.cs │ ├── PublicResultObjectAfsService.cs │ ├── PublicResultObjectAllTask.cs │ ├── PublicResultObjectFinishedTask.cs │ ├── PublicResultObjectOrderId.cs │ ├── PublicResultObjectReceiveTask.cs │ ├── PublicResultObjectUnresolvedTask.cs │ └── PublicResultObjectWaitProcessTask.cs │ ├── sku │ ├── ApiJosResult.cs │ ├── OrderOrderDeleteApplyResponse.cs │ ├── OrderOrderDeleteCancelApplyResponse.cs │ ├── OrderVenderRemarkQueryByOrderIdResponse.cs │ ├── VenderRemark.cs │ └── VenderRemarkQueryResult.cs │ ├── supplier │ ├── DeliverDoResultSetDto.cs │ ├── DropshipDpsCurrenttimeResponse.cs │ ├── DropshipDpsDeliveryResponse.cs │ ├── DropshipDpsOutboundResponse.cs │ ├── DropshipDpsPrerefundResponse.cs │ ├── DropshipDpsRefuseResponse.cs │ ├── DropshipDpsSearchResponse.cs │ ├── DropshipDpsSearchpreResponse.cs │ ├── DropshipDpsSearchsingleResponse.cs │ ├── OrderDetailForJosDto.cs │ ├── OutBoundResultDto.cs │ ├── PoDetailPageGetResponse.cs │ ├── PoListPageGetResponse.cs │ ├── PreRefundResult.cs │ ├── ProcurementOrderConfirmResponse.cs │ ├── ProcurementOrderCreateResponse.cs │ ├── QueryOrderForJosResultDto.cs │ ├── QueryOrderForJosResultListDto.cs │ ├── QuerySingleOrderForJosResultDto.cs │ ├── RefuseResult.cs │ ├── ReturnOrderDetailForJosDto.cs │ ├── ReturnOrderPreForJosResultDto.cs │ ├── ReturnOrderPreForJosResultListDto.cs │ ├── UserCategory3Dto.cs │ ├── UserCategory3InfoDto.cs │ ├── UserCategory3InfoGetResponse.cs │ ├── VcCreateReturnOrderResponse.cs │ ├── VcGetReturnOrderDetailResponse.cs │ ├── VcReturnOrderListPageGetResponse.cs │ ├── VcStockSalesDetailGetResponse.cs │ └── VcStockSalesGetResponse.cs │ ├── tools │ └── TimeGetResponse.cs │ ├── udp │ ├── DataserviceFwlistpvGetResponse.cs │ ├── DataserviceFwreferpvGetResponse.cs │ ├── DataserviceShoppvtop15bydayGetResponse.cs │ ├── DataserviceShoppvtop15bymonthGetResponse.cs │ ├── DataserviceShoppvtop15byweekGetResponse.cs │ ├── DataserviceShopsalesbydayGetResponse.cs │ ├── DataserviceShopsalesbymonthGetResponse.cs │ ├── DataserviceShopsalesbyweekGetResponse.cs │ ├── DataserviceShopsalestop15bydayGetResponse.cs │ ├── DataserviceShopsalestop15bymonthGetResponse.cs │ ├── DataserviceShopsalestop15byweekGetResponse.cs │ ├── DataserviceShopuvtop15bydayGetResponse.cs │ ├── DataserviceShopuvtop15bymonthGetResponse.cs │ ├── DataserviceShopuvtop15byweekGetResponse.cs │ ├── DataserviceShopvistop15bydayGetResponse.cs │ ├── DataserviceShopvistop15bymonthGetResponse.cs │ ├── DataserviceShopvistop15byweekGetResponse.cs │ ├── DataserviceShopvoltop15bydayGetResponse.cs │ ├── DataserviceShopvoltop15bymonthGetResponse.cs │ ├── DataserviceShopvoltop15byweekGetResponse.cs │ ├── FwPvResponse.cs │ ├── FwResultDTO.cs │ ├── ShopPvResultDTO.cs │ ├── ShopPvTop15Response.cs │ ├── ShopSalesResponse.cs │ ├── ShopSalesResultDTO.cs │ ├── ShopUvResultDTO.cs │ └── ShopUvTop15Response.cs │ ├── user │ ├── EccUserGetResponse.cs │ ├── EccUserSearchResponse.cs │ ├── UserPagingResult.cs │ └── UserResult.cs │ ├── vender │ └── VenderGetResponse.cs │ ├── ware │ ├── BookBigFieldEntity.cs │ ├── BookBigFieldInfo.cs │ ├── BookEntity.cs │ ├── BookInfo.cs │ ├── CategoryProxyResult.cs │ ├── EccItemAddResponse.cs │ ├── EccItemDelistingResponse.cs │ ├── EccItemGetResponse.cs │ ├── EccItemListingResponse.cs │ ├── EccItemSearchResponse.cs │ ├── EccItemUpdateResponse.cs │ ├── EccSkuGetResponse.cs │ ├── EccSkuSearchResponse.cs │ ├── Image.cs │ ├── ImagePath.cs │ ├── ItemPagingProxyResult.cs │ ├── ItemPictureProxyResult.cs │ ├── ItemPictureResult.cs │ ├── ItemProxyResult.cs │ ├── ItemResult.cs │ ├── ItemSkuListResult.cs │ ├── ItemSkuResult.cs │ ├── ProductBase.cs │ ├── ProductDetailList.cs │ ├── ProductInfo.cs │ ├── ProductSkuList.cs │ ├── ProductSort.cs │ ├── ProductStock.cs │ ├── Provice.cs │ ├── ProvinceList.cs │ ├── SearchCatelogyList.cs │ ├── SearchProductList.cs │ ├── SkuColor.cs │ ├── SkuCustomGetResponse.cs │ ├── SkuProxyResult.cs │ ├── SkuResult.cs │ ├── SkuSize.cs │ ├── VideoBigFieldEntity.cs │ ├── VideoBigFieldInfo.cs │ ├── VideoEntity.cs │ ├── VideoInfo.cs │ ├── WareAddResponse.cs │ ├── WareAddVenderSellSkuResponse.cs │ ├── WareAreaLimitSearchResponse.cs │ ├── WareAreaLimitUpdateResponse.cs │ ├── WareBasebookGetResponse.cs │ ├── WareBaseproductGetResponse.cs │ ├── WareBasevideoGetResponse.cs │ ├── WareBookbigfieldGetResponse.cs │ ├── WareDeleteResponse.cs │ ├── WareDelistingGetResponse.cs │ ├── WareGetResponse.cs │ ├── WareInfo.cs │ ├── WareInfoByInfoSearchResponse.cs │ ├── WareListResponse.cs │ ├── WareListSearchResponse.cs │ ├── WareListingGetResponse.cs │ ├── WareProductDetailSearchListGetResponse.cs │ ├── WareProductSearchListGetResponse.cs │ ├── WareProductStockListGetResponse.cs │ ├── WareProductbigfieldGetResponse.cs │ ├── WareProductimageGetResponse.cs │ ├── WareProductsortGetResponse.cs │ ├── WarePromotionSearchCatelogyListResponse.cs │ ├── WarePropimgAddResponse.cs │ ├── WarePropimgDeleteResponse.cs │ ├── WarePropimgUpdateResponse.cs │ ├── WarePropimgsGetResponse.cs │ ├── WarePropimgsSearchResponse.cs │ ├── WareSelectedProvinceListGetResponse.cs │ ├── WareSkuAddResponse.cs │ ├── WareSkuDeleteResponse.cs │ ├── WareSkuGetResponse.cs │ ├── WareSkuPriceUpdateResponse.cs │ ├── WareSkuSearchListGetResponse.cs │ ├── WareSkuStockUpdateResponse.cs │ ├── WareSkuUpdateResponse.cs │ ├── WareSkusGetResponse.cs │ ├── WareTemplateAddResponse.cs │ ├── WareTemplateDeleteResponse.cs │ ├── WareTemplateGetResponse.cs │ ├── WareTemplateIdsAndNamesGetResponse.cs │ ├── WareTemplateToWaresUpdateResponse.cs │ ├── WareTemplateUpdateResponse.cs │ ├── WareUpdateDelistingResponse.cs │ ├── WareUpdateListingResponse.cs │ ├── WareUpdateResponse.cs │ ├── WareUpdateVenderSellSkuResponse.cs │ └── WareVideobigfieldGetResponse.cs │ ├── website │ ├── category │ │ ├── WareAttributesGetResponse.cs │ │ └── WareCategoryGetResponse.cs │ ├── cps │ │ ├── CPSCatalogPageGetResponse.cs │ │ ├── CPSSpreadHomeInfoResponse.cs │ │ └── CPSWareDetailPageGetResponse.cs │ ├── recommend │ │ ├── AnotherBuyCombineRecommendResponse.cs │ │ ├── CombineRecommendResponse.cs │ │ └── UserBrowseBuyRecommendResponse.cs │ └── ware │ │ ├── RegionInfoGetResponse.cs │ │ ├── SkuJdPriceGetResponse.cs │ │ ├── WareGetResponse.cs │ │ ├── WareSearchByCidResponse.cs │ │ └── WareSearchResponse.cs │ ├── weigou │ └── OrderPaymentGetResponse.cs │ ├── wms │ ├── CarriersDetail.cs │ ├── HashMap.cs │ ├── LogisticsCarriersListResponse.cs │ ├── LogisticsOrderAddResponse.cs │ ├── LogisticsOrderDeleteResponse.cs │ ├── LogisticsOrderGetResponse.cs │ ├── LogisticsOrderSearchResponse.cs │ ├── LogisticsOtherInstoreAddResponse.cs │ ├── LogisticsOtherInstoreQueryResponse.cs │ ├── LogisticsOtherOutstoreAddResponse.cs │ ├── LogisticsOtherOutstoreQueryResponse.cs │ ├── LogisticsOtherOutstoreQueryreturnbarcodeResponse.cs │ ├── LogisticsPoAddResponse.cs │ ├── LogisticsPoGetResponse.cs │ ├── LogisticsPoGetreturnbacodeResponse.cs │ ├── LogisticsReturnorderAddResponse.cs │ ├── LogisticsReturnorderCancelResponse.cs │ ├── LogisticsReturnorderQueryResponse.cs │ ├── LogisticsSkuAddResponse.cs │ ├── LogisticsSkuQueryResponse.cs │ ├── LogisticsSkuUpdateResponse.cs │ ├── LogisticsStockSearchResponse.cs │ ├── LogisticsWarehouseListResponse.cs │ ├── OrderPackageDetail.cs │ ├── OrderStatusDetail.cs │ ├── OtherInstoreOrderDetail.cs │ ├── ProcessResult.cs │ ├── ReceivingTask.cs │ ├── ResponseOrderOtherDetail.cs │ ├── ResponseOrderStatus.cs │ ├── ResponseReturnOrder.cs │ ├── ResponseStock.cs │ ├── StockDetail.cs │ └── WarehouseDetail.cs │ ├── workorder │ ├── RestWorkorderReplyResponse.cs │ ├── SafBiztypeDTO.cs │ ├── SafWoOperDTO.cs │ ├── SafWorkDTO.cs │ ├── SafWorkInfoDTO.cs │ ├── SafWorkPage.cs │ ├── WorkOrderResponse.cs │ ├── WosSubbiztypelistGetResponse.cs │ ├── WosWorkinfoGetResponse.cs │ └── WosWorklistGetResponse.cs │ └── zhijian │ ├── MarketServiceQtReportAddResponse.cs │ ├── MarketServiceQtReportDeleteResponse.cs │ ├── MarketServiceQtReportGetResponse.cs │ ├── MarketServiceQtReportListGetResponse.cs │ ├── MarketServiceQtReportUpdateResponse.cs │ └── MarketServiceQtSubscribeGetResponse.cs ├── JdSdk2-vs2010.sln ├── JdSdk2-vs2012.sln ├── JdSdk2.sln ├── README.html ├── Readme.txt ├── build.proj ├── json.net license.txt └── libs └── msbuild ├── ICSharpCode.SharpZipLib.dll ├── MSBuild.Community.Tasks.Targets └── MSBuild.Community.Tasks.dll /.gitignore: -------------------------------------------------------------------------------- 1 | _ReSharper* 2 | [Bb]in 3 | obj 4 | App_Data 5 | *.user 6 | *.scc 7 | *.patch 8 | *.hg 9 | *.sln.cache 10 | *.orig 11 | *.suo 12 | *.vs10x 13 | *.vsp 14 | *.psess 15 | *.docstates 16 | TestResults 17 | [Tt]humbs.db 18 | *.log 19 | *.userprefs 20 | .DS_Store 21 | /Source/JdSdk/*.vspscc 22 | /Source/Build 23 | /Source/packages 24 | 25 | *.GhostDoc.xml 26 | -------------------------------------------------------------------------------- /Releases/JdSdk2.NET 2014.01.02.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starpeng/JdSdk2/a26db0a2e4c5c0a94b1a0b96a38bab27c85e2cd2/Releases/JdSdk2.NET 2014.01.02.zip -------------------------------------------------------------------------------- /Releases/JdSdk2.NET 2014.01.16.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starpeng/JdSdk2/a26db0a2e4c5c0a94b1a0b96a38bab27c85e2cd2/Releases/JdSdk2.NET 2014.01.16.zip -------------------------------------------------------------------------------- /Releases/JdSdk2.NET 2014.02.23.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starpeng/JdSdk2/a26db0a2e4c5c0a94b1a0b96a38bab27c85e2cd2/Releases/JdSdk2.NET 2014.02.23.zip -------------------------------------------------------------------------------- /Releases/JdSdk2.NET 2014.04.12.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starpeng/JdSdk2/a26db0a2e4c5c0a94b1a0b96a38bab27c85e2cd2/Releases/JdSdk2.NET 2014.04.12.zip -------------------------------------------------------------------------------- /Releases/JdSdk2.NET 2014.04.15.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starpeng/JdSdk2/a26db0a2e4c5c0a94b1a0b96a38bab27c85e2cd2/Releases/JdSdk2.NET 2014.04.15.zip -------------------------------------------------------------------------------- /Releases/JdSdk2.NET 2014.05.31.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starpeng/JdSdk2/a26db0a2e4c5c0a94b1a0b96a38bab27c85e2cd2/Releases/JdSdk2.NET 2014.05.31.zip -------------------------------------------------------------------------------- /Source/ClickToBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starpeng/JdSdk2/a26db0a2e4c5c0a94b1a0b96a38bab27c85e2cd2/Source/ClickToBuild.cmd -------------------------------------------------------------------------------- /Source/JdSdk/IJdLogger.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace JdSdk 3 | { 4 | /// 5 | /// 日志打点接口。 6 | /// 7 | public interface IJdLogger 8 | { 9 | void Error(string message); 10 | void Warn(string message); 11 | void Info(string message); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Source/JdSdk/IJdRequest.cs: -------------------------------------------------------------------------------- 1 |  2 | using System; 3 | 4 | namespace JdSdk.Request 5 | { 6 | /// 7 | /// Jd请求接口。 8 | /// 9 | public interface IJdRequest where T : JdResponse 10 | { 11 | /// 12 | /// 获取Jd的API名称。 13 | /// 14 | /// API名称 15 | String ApiName 16 | { 17 | get; 18 | } 19 | 20 | String GetParamJson(); 21 | 22 | /// 23 | /// 提前验证参数。 24 | /// 25 | void Validate(); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Source/JdSdk/IJdUploadRequest.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace JdSdk.Request 4 | { 5 | /// 6 | /// Jd上传请求接口,支持同时上传多个文件。 7 | /// 8 | public interface IJdUploadRequest : IJdRequest where T : JdResponse 9 | { 10 | /// 11 | /// 获取所有的Key-Value形式的文件请求参数字典。其中: 12 | /// Key: 请求参数名 13 | /// Value: 文件对象 14 | /// 15 | /// 文件请求参数字典 16 | IDictionary GetFileParameters(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Source/JdSdk/JdObject.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace JdSdk 4 | { 5 | /// 6 | /// 基础对象。 7 | /// 8 | [Serializable] 9 | public abstract class JdObject 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Source/JdSdk/JdSdk2.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starpeng/JdSdk2/a26db0a2e4c5c0a94b1a0b96a38bab27c85e2cd2/Source/JdSdk/JdSdk2.snk -------------------------------------------------------------------------------- /Source/JdSdk/Parser/IJdParser.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace JdSdk.Parser 3 | { 4 | /// 5 | /// Jd API响应解释器接口。响应格式可以是XML, JSON等等。 6 | /// 7 | /// 领域对象 8 | public interface IJdParser 9 | { 10 | /// 11 | /// 把响应字符串解释成相应的领域对象。 12 | /// 13 | /// 响应字符串 14 | /// 领域对象 15 | T Parse(string body); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Source/JdSdk/Parser/JdAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | 4 | namespace JdSdk.Parser 5 | { 6 | public class JdAttribute 7 | { 8 | public string ItemName { get; set; } 9 | public Type ItemType { get; set; } 10 | public string ListName { get; set; } 11 | public Type ListType { get; set; } 12 | public MethodInfo Method { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Source/JdSdk/domain/after/ReturnGoods.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Domain.After 8 | { 9 |  [Serializable] 10 | public class ReturnGoods : JdObject 11 | { 12 | [JsonProperty("total_num")] 13 | public Nullable TotalNum 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("return_infos")] 20 | public List ReturnInfos 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/domain/im/ApiService/ChatLogPage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Domain.Im.ApiService 8 | { 9 |  [Serializable] 10 | public class ChatLogPage : JdObject 11 | { 12 | [JsonProperty("chatList")] 13 | public List ChatList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("totalRecord")] 20 | public Nullable TotalRecord 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/domain/order/OrderDetailInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Domain.Order 8 | { 9 |  [Serializable] 10 | public class OrderDetailInfo : JdObject 11 | { 12 | [JsonProperty("orderInfo")] 13 | public OrderInfo OrderInfo 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/domain/order/OrderResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Domain.Order 8 | { 9 |  [Serializable] 10 | public class OrderResult : JdObject 11 | { 12 | [JsonProperty("order_total")] 13 | public Nullable OrderTotal 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("order_info_list")] 20 | public List OrderInfoList 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/domain/website/category/AttributeValue.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Domain.Website.Category 8 | { 9 |  [Serializable] 10 | public class AttributeValue : JdObject 11 | { 12 | [JsonProperty("vid")] 13 | public Nullable Vid 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("name")] 20 | public String Name 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/domain/website/response/OrderCanBuyAreaResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Order; 7 | 8 | namespace JdSdk.Domain.Website.Response 9 | { 10 |  [Serializable] 11 | public class OrderCanBuyAreaResponse : JdResponse 12 | { 13 | [JsonProperty("canbuyaddresses")] 14 | public List CanBuyAddresses 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/domain/website/response/OrderCanBuyCityResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Order; 7 | 8 | namespace JdSdk.Domain.Website.Response 9 | { 10 |  [Serializable] 11 | public class OrderCanBuyCityResponse : JdResponse 12 | { 13 | [JsonProperty("canbuyaddresses")] 14 | public List CanBuyAddresses 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/domain/website/response/OrderCanBuyProvinceResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Order; 7 | 8 | namespace JdSdk.Domain.Website.Response 9 | { 10 |  [Serializable] 11 | public class OrderCanBuyProvinceResponse : JdResponse 12 | { 13 | [JsonProperty("canbuyaddresses")] 14 | public List CanBuyAddresses 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/domain/website/response/OrderCanBuyTownResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Order; 7 | 8 | namespace JdSdk.Domain.Website.Response 9 | { 10 |  [Serializable] 11 | public class OrderCanBuyTownResponse : JdResponse 12 | { 13 | [JsonProperty("canbuyaddresses")] 14 | public List CanBuyAddresses 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/domain/website/response/OrderCreateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Order; 7 | 8 | namespace JdSdk.Domain.Website.Response 9 | { 10 |  [Serializable] 11 | public class OrderCreateResponse : JdResponse 12 | { 13 | [JsonProperty("ordercreateresult")] 14 | public OrderCreateResult OrderCreateResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/domain/website/ware/Region.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Domain.Website.Ware 8 | { 9 |  [Serializable] 10 | public class Region : JdObject 11 | { 12 | [JsonProperty("region_id")] 13 | public Nullable RegionId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("region_name")] 20 | public String ResionName 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/domain/website/ware/WareImg.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Domain.Website.Ware 8 | { 9 |  [Serializable] 10 | public class WareImg : JdObject 11 | { 12 | [JsonProperty("img_name")] 13 | public String ImgName 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("url")] 20 | public String Url 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/domain/weigou/PaymentShipmentExportService/PaymentVO.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Domain.Weigou.PaymentShipmentExportService 8 | { 9 |  [Serializable] 10 | public class PaymentVO : JdObject 11 | { 12 | [JsonProperty("paymentId")] 13 | public Nullable PaymentId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Source/JdSdk/request/Field.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Request; 7 | using JdSdk.Response; 8 | 9 | namespace JdSdk.Request 10 | { 11 |  [Serializable] 12 | public class Field : JdObject 13 | { 14 | [JsonProperty("key")] 15 | public String Key 16 | { 17 | get; 18 | set; 19 | } 20 | 21 | [JsonProperty("value")] 22 | public String Value 23 | { 24 | get; 25 | set; 26 | } 27 | 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /Source/JdSdk/request/address/AreaProvinceGetRequest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Request; 7 | using JdSdk.Response.Address; 8 | 9 | namespace JdSdk.Request.Address 10 | { 11 |  public class AreaProvinceGetRequest : JdRequestBase 12 | { 13 | public override String ApiName 14 | { 15 | get{ return "jingdong.area.province.get"; } 16 | } 17 | 18 | protected override void PrepareParam(IDictionary paramters) 19 | { 20 | } 21 | 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /Source/JdSdk/request/address/AreasGetRequest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Request; 7 | using JdSdk.Response.Address; 8 | 9 | namespace JdSdk.Request.Address 10 | { 11 |  public class AreasGetRequest : JdRequestBase 12 | { 13 | public override String ApiName 14 | { 15 | get{ return "jingdong.areas.get"; } 16 | } 17 | 18 | protected override void PrepareParam(IDictionary paramters) 19 | { 20 | } 21 | 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /Source/JdSdk/request/im/ImPopGroupinfoGetRequest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Request; 7 | using JdSdk.Response.Im; 8 | 9 | namespace JdSdk.Request.Im 10 | { 11 |  public class ImPopGroupinfoGetRequest : JdRequestBase 12 | { 13 | public override String ApiName 14 | { 15 | get{ return "jingdong.im.pop.groupinfo.get"; } 16 | } 17 | 18 | protected override void PrepareParam(IDictionary paramters) 19 | { 20 | } 21 | 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /Source/JdSdk/request/kuaiche/KuaichePopGetRequest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Request; 7 | using JdSdk.Response.Kuaiche; 8 | 9 | namespace JdSdk.Request.Kuaiche 10 | { 11 |  public class KuaichePopGetRequest : JdRequestBase 12 | { 13 | public override String ApiName 14 | { 15 | get{ return "jingdong.kuaiche.pop.get"; } 16 | } 17 | 18 | protected override void PrepareParam(IDictionary paramters) 19 | { 20 | } 21 | 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /Source/JdSdk/request/photo/PhotoProxyResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Request; 7 | using JdSdk.Response.Photo; 8 | 9 | namespace JdSdk.Request.Photo 10 | { 11 |  [Serializable] 12 | public class PhotoProxyResult : JdObject 13 | { 14 | [JsonProperty("picture_url")] 15 | public String PictureUrl 16 | { 17 | get; 18 | set; 19 | } 20 | 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /Source/JdSdk/request/seller/VenderShopQueryRequest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Request; 7 | using JdSdk.Response.Seller; 8 | 9 | namespace JdSdk.Request.Seller 10 | { 11 |  public class VenderShopQueryRequest : JdRequestBase 12 | { 13 | public override String ApiName 14 | { 15 | get{ return "jingdong.vender.shop.query"; } 16 | } 17 | 18 | protected override void PrepareParam(IDictionary paramters) 19 | { 20 | } 21 | 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /Source/JdSdk/request/tools/TimeGetRequest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Request; 7 | using JdSdk.Response.Tools; 8 | 9 | namespace JdSdk.Request.Tools 10 | { 11 |  public class TimeGetRequest : JdRequestBase 12 | { 13 | public override String ApiName 14 | { 15 | get{ return "360buy.time.get"; } 16 | } 17 | 18 | protected override void PrepareParam(IDictionary paramters) 19 | { 20 | } 21 | 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /Source/JdSdk/response/O2O/LogisticsO2oAnti_dispatchUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.O2O.StoreOFCService; 7 | 8 | namespace JdSdk.Response.O2O 9 | { 10 |  [Serializable] 11 | public class LogisticsO2oAntiDispatchUpdateResponse : JdResponse 12 | { 13 | [JsonProperty("OrderServiceResponse")] 14 | public OrderServiceResponse OrderServiceResponse 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/O2O/LogisticsO2oSkuStock_ownerUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.O2O.StoreOFCService; 7 | 8 | namespace JdSdk.Response.O2O 9 | { 10 |  [Serializable] 11 | public class LogisticsO2oSkuStockOwnerUpdateResponse : JdResponse 12 | { 13 | [JsonProperty("SkuAddResponse")] 14 | public SkuAddResponse SkuAddResponse 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/address/AreaCityGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Address 8 | { 9 |  [Serializable] 10 | public class AreaCityGetResponse : JdResponse 11 | { 12 | [JsonProperty("city_areas")] 13 | public AreaListBeanVO[] CityAreas 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("success")] 20 | public Nullable Success 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/address/AreaIpQueryResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Address 8 | { 9 |  [Serializable] 10 | public class AreaIpQueryResponse : JdResponse 11 | { 12 | [JsonProperty("jip_response")] 13 | public IpLookupResponse JipResponse 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/address/AreaTownGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Address 8 | { 9 |  [Serializable] 10 | public class AreaTownGetResponse : JdResponse 11 | { 12 | [JsonProperty("town_areas")] 13 | public AreaListBeanVO[] TownAreas 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("success")] 20 | public Nullable Success 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/address/AreasGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Address 8 | { 9 |  [Serializable] 10 | public class AreasGetResponse : JdResponse 11 | { 12 | [JsonProperty("code_areas")] 13 | public JosAreaListBeanVO[] CodeAreas 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("success")] 20 | public Nullable Success 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/after/AfterSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.After; 7 | 8 | namespace JdSdk.Response.After 9 | { 10 |  [Serializable] 11 | public class AfterSearchResponse : JdResponse 12 | { 13 | [JsonProperty("after")] 14 | public ReturnGoods ReturnGoods 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/category/CategoryGroupSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Category; 7 | 8 | namespace JdSdk.Response.Category 9 | { 10 |  [Serializable] 11 | public class CategoryGroupSearchResponse : JdResponse 12 | { 13 | [JsonProperty("groups")] 14 | public List Groups 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/category/EccCategoryAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Category 8 | { 9 |  [Serializable] 10 | public class EccCategoryAddResponse : JdResponse 11 | { 12 | [JsonProperty("category_result")] 13 | public Request.Category.CategoryResult CategoryResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/category/EccCategoryChildsListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Category 8 | { 9 |  [Serializable] 10 | public class EccCategoryChildsListGetResponse : JdResponse 11 | { 12 | [JsonProperty("categorys")] 13 | public List Categorys 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/category/EccCategoryDeleteResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Category 8 | { 9 |  [Serializable] 10 | public class EccCategoryDeleteResponse : JdResponse 11 | { 12 | [JsonProperty("is_success")] 13 | public Nullable IsSuccess 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/category/EccCategoryGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Category 8 | { 9 |  [Serializable] 10 | public class EccCategoryGetResponse : JdResponse 11 | { 12 | [JsonProperty("category_result")] 13 | public Request.Category.CategoryResult CategoryResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/category/EccCategoryListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Category 8 | { 9 |  [Serializable] 10 | public class EccCategoryListGetResponse : JdResponse 11 | { 12 | [JsonProperty("categorys")] 13 | public List Categorys 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/category/EccCategoryParentsListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Category 8 | { 9 |  [Serializable] 10 | public class EccCategoryParentsListGetResponse : JdResponse 11 | { 12 | [JsonProperty("categorys")] 13 | public List Categorys 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/category/EccCategoryUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Category 8 | { 9 |  [Serializable] 10 | public class EccCategoryUpdateResponse : JdResponse 11 | { 12 | [JsonProperty("category_result")] 13 | public Request.Category.CategoryResult CategoryResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/cps/ActivityImageCode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Cps 8 | { 9 |  [Serializable] 10 | public class ActivityImageCode : JdObject 11 | { 12 | [JsonProperty("size")] 13 | public String Size 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("code")] 20 | public String Code 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/cps/PromotionGoodsVO.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Cps 8 | { 9 |  [Serializable] 10 | public class PromotionGoodsVO : JdObject 11 | { 12 | [JsonProperty("goods_list")] 13 | public List GoodsList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("total_count")] 20 | public Nullable TotalCount 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/cps/UnionActivityimg.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Cps 8 | { 9 |  [Serializable] 10 | public class UnionActivityimg : JdObject 11 | { 12 | [JsonProperty("imgUrl")] 13 | public String ImgUrl 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/cps/UnionAdvdetailGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Cps 8 | { 9 |  [Serializable] 10 | public class UnionAdvdetailGetResponse : JdResponse 11 | { 12 | [JsonProperty("adv_detail")] 13 | public AdvDetailVo AdvDetail 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/cps/UnionCategoryinfoSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Cps 8 | { 9 |  [Serializable] 10 | public class UnionCategoryinfoSearchResponse : JdResponse 11 | { 12 | [JsonProperty("resultVO")] 13 | public ResultVO ResultVO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/cps/UnionPlanSaveResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Cps 8 | { 9 |  [Serializable] 10 | public class UnionPlanSaveResponse : JdResponse 11 | { 12 | [JsonProperty("resultVO")] 13 | public ResultVO ResultVO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/cps/UnionPlanbaseinfoGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Cps 8 | { 9 |  [Serializable] 10 | public class UnionPlanbaseinfoGetResponse : JdResponse 11 | { 12 | [JsonProperty("resultVO")] 13 | public ResultVO ResultVO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/cps/UnionPlandetailGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Cps 8 | { 9 |  [Serializable] 10 | public class UnionPlandetailGetResponse : JdResponse 11 | { 12 | [JsonProperty("planVO")] 13 | public PlanVO PlanVO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/cps/UnionPlanlistSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Cps 8 | { 9 |  [Serializable] 10 | public class UnionPlanlistSearchResponse : JdResponse 11 | { 12 | [JsonProperty("planListVO")] 13 | public PlanListVO PlanListVO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/cps/UnionZoneCodeGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Cps 8 | { 9 |  [Serializable] 10 | public class UnionZoneCodeGetResponse : JdResponse 11 | { 12 | [JsonProperty("zone_code")] 13 | public String ZoneCode 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/cps/UnionZoneInfoGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Cps 8 | { 9 |  [Serializable] 10 | public class UnionZoneInfoGetResponse : JdResponse 11 | { 12 | [JsonProperty("ad_zone")] 13 | public AdZoneVo AdZone 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/delivery/DeliveryLogisticsGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Delivery; 7 | 8 | namespace JdSdk.Response.Delivery 9 | { 10 |  [Serializable] 11 | public class DeliveryLogisticsGetResponse : JdResponse 12 | { 13 | [JsonProperty("logistics_companies")] 14 | public LogisticsCompanies LogisticsCompanies 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/delivery/EtmsTraceGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Delivery 8 | { 9 |  [Serializable] 10 | public class EtmsTraceGetResponse : JdResponse 11 | { 12 | [JsonProperty("trace_api_dtos")] 13 | public List TraceApiDtos 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/delivery/EtmsWaybillSendResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Delivery.OrderInfoJosService; 7 | 8 | namespace JdSdk.Response.Delivery 9 | { 10 |  [Serializable] 11 | public class EtmsWaybillSendResponse : JdResponse 12 | { 13 | [JsonProperty("resultInfo")] 14 | public SendResultInfoDTO ResultInfo 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/delivery/EtmsWaybillcodeGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Delivery.OrderInfoJosService; 7 | 8 | namespace JdSdk.Response.Delivery 9 | { 10 |  [Serializable] 11 | public class EtmsWaybillcodeGetResponse : JdResponse 12 | { 13 | [JsonProperty("resultInfo")] 14 | public GetResultInfoDTO ResultInfo 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/im/ImPopChatlogFuzzyQueryResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Im.ApiService; 7 | 8 | namespace JdSdk.Response.Im 9 | { 10 |  [Serializable] 11 | public class ImPopChatlogFuzzyQueryResponse : JdResponse 12 | { 13 | [JsonProperty("ChatLog")] 14 | public ChatLogPage ChatLog 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/im/ImPopChatlogGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Im.ApiService; 7 | 8 | namespace JdSdk.Response.Im 9 | { 10 |  [Serializable] 11 | public class ImPopChatlogGetResponse : JdResponse 12 | { 13 | [JsonProperty("ChatLog")] 14 | public ChatLogPage ChatLog 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/im/ImPopConsultAvgwaittimeGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Im 8 | { 9 |  [Serializable] 10 | public class ImPopConsultAvgwaittimeGetResponse : JdResponse 11 | { 12 | [JsonProperty("avgTime")] 13 | public Nullable AvgTime 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/im/ImPopEvaluationlistGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Im 8 | { 9 |  [Serializable] 10 | public class ImPopEvaluationlistGetResponse : JdResponse 11 | { 12 | [JsonProperty("Evaluation")] 13 | public List Evaluation 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/im/ImPopEvaluationstatGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Im 8 | { 9 |  [Serializable] 10 | public class ImPopEvaluationstatGetResponse : JdResponse 11 | { 12 | [JsonProperty("WaiterDailyEvaStat")] 13 | public List WaiterDailyEvaStat 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/im/ImPopGroupinfoGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Im 8 | { 9 |  [Serializable] 10 | public class ImPopGroupinfoGetResponse : JdResponse 11 | { 12 | [JsonProperty("popgroup")] 13 | public POPGroup Popgroup 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/im/ImPopPasslogGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Im 8 | { 9 |  [Serializable] 10 | public class ImPopPasslogGetResponse : JdResponse 11 | { 12 | [JsonProperty("PassLog")] 13 | public List PassLog 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/im/ImPopReplystatGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Im 8 | { 9 |  [Serializable] 10 | public class ImPopReplystatGetResponse : JdResponse 11 | { 12 | [JsonProperty("WaiterDailyStat")] 13 | public List WaiterDailyStat 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/im/ImPopSessionlistGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Im 8 | { 9 |  [Serializable] 10 | public class ImPopSessionlistGetResponse : JdResponse 11 | { 12 | [JsonProperty("ChatSession")] 13 | public List ChatSession 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/im/ImPopUnreplystatGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Im 8 | { 9 |  [Serializable] 10 | public class ImPopUnreplystatGetResponse : JdResponse 11 | { 12 | [JsonProperty("WaiterDailyStat")] 13 | public List WaiterDailyStat 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/im/ImPopWaiterOnlinetimeStatGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Im 8 | { 9 |  [Serializable] 10 | public class ImPopWaiterOnlinetimeStatGetResponse : JdResponse 11 | { 12 | [JsonProperty("WaiterDailyStat")] 13 | public List WaiterDailyStat 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/JosSkuInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class JosSkuInfo : JdObject 11 | { 12 | [JsonProperty("sku_id")] 13 | public Nullable SkuId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("sku_url")] 20 | public String SkuUrl 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheAccountGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Kuaiche.AccountJosService; 7 | 8 | namespace JdSdk.Response.Kuaiche 9 | { 10 |  [Serializable] 11 | public class KuaicheAccountGetResponse : JdResponse 12 | { 13 | [JsonProperty("account")] 14 | public AccountVO Account 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheAccountIncomexpenseSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Kuaiche.AccountJosService; 7 | 8 | namespace JdSdk.Response.Kuaiche 9 | { 10 |  [Serializable] 11 | public class KuaicheAccountIncomexpenseSearchResponse : JdResponse 12 | { 13 | [JsonProperty("page_info")] 14 | public PageInfo PageInfo 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheGoodsGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheGoodsGetResponse : JdResponse 11 | { 12 | [JsonProperty("result")] 13 | public JosGoodsInfo Result 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaichePopGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaichePopGetResponse : JdResponse 11 | { 12 | [JsonProperty("result")] 13 | public PopDetailJos Result 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnBidRankGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnBidRankGetResponse : JdResponse 11 | { 12 | [JsonProperty("rank_return")] 13 | public RankReturnJO RankReturn 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnKeywordgroupListSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnKeywordgroupListSearchResponse : JdResponse 11 | { 12 | [JsonProperty("return_info")] 13 | public KeywordQueryVO ReturnInfo 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnMaterialLabelsSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnMaterialLabelsSearchResponse : JdResponse 11 | { 12 | [JsonProperty("material_label_list")] 13 | public List MaterialLabelList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnPlanChannelCreateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnPlanChannelCreateResponse : JdResponse 11 | { 12 | [JsonProperty("result_status")] 13 | public ResultStatus ResultStatus 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnPlanChannelModifyResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnPlanChannelModifyResponse : JdResponse 11 | { 12 | [JsonProperty("result_status")] 13 | public ResultStatus ResultStatus 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnPlanDetailGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnPlanDetailGetResponse : JdResponse 11 | { 12 | [JsonProperty("plan_detail_info")] 13 | public PlanDetailInfo PlanDetailInfo 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnPlanListSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnPlanListSearchResponse : JdResponse 11 | { 12 | [JsonProperty("plan_list_info")] 13 | public QueryPlanReturnInfo PlanListInfo 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnPlanSearchCreateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnPlanSearchCreateResponse : JdResponse 11 | { 12 | [JsonProperty("result_status")] 13 | public ResultStatus ResultStatus 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnPlanSearchKeywordAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnPlanSearchKeywordAddResponse : JdResponse 11 | { 12 | [JsonProperty("result_status")] 13 | public ResultStatus ResultStatus 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnPlanSearchKeywordDeleteResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnPlanSearchKeywordDeleteResponse : JdResponse 11 | { 12 | [JsonProperty("result_status")] 13 | public ResultStatus ResultStatus 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnPlanSearchKeywordGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Kuaiche.ZnJosPlanService; 7 | 8 | namespace JdSdk.Response.Kuaiche 9 | { 10 |  [Serializable] 11 | public class KuaicheZnPlanSearchKeywordGetResponse : JdResponse 12 | { 13 | [JsonProperty("keywords_info")] 14 | public List KeywordsInfo 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnPlanSearchKeywordUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnPlanSearchKeywordUpdateResponse : JdResponse 11 | { 12 | [JsonProperty("result_status")] 13 | public ResultStatus ResultStatus 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnPlanSearchModifyResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnPlanSearchModifyResponse : JdResponse 11 | { 12 | [JsonProperty("result_status")] 13 | public ResultStatus ResultStatus 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnScheduleAvailableSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnScheduleAvailableSearchResponse : JdResponse 11 | { 12 | [JsonProperty("schedule_day_list")] 13 | public List ScheduleDayList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnScheduleBidDetailSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnScheduleBidDetailSearchResponse : JdResponse 11 | { 12 | [JsonProperty("Schedule_list")] 13 | public List ScheduleList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnSpaceInfoSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnSpaceInfoSearchResponse : JdResponse 11 | { 12 | [JsonProperty("space_info_list")] 13 | public List SpaceInfoList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/kuaiche/KuaicheZnSpacePageByTypeSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Kuaiche 8 | { 9 |  [Serializable] 10 | public class KuaicheZnSpacePageByTypeSearchResponse : JdResponse 11 | { 12 | [JsonProperty("space_page_info_list")] 13 | public List SpacePageInfoList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/list/CatelogyAttributeList.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.List 8 | { 9 |  [Serializable] 10 | public class CatelogyAttributeList : JdObject 11 | { 12 | [JsonProperty("resultCode")] 13 | public Nullable ResultCode 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("expandSorts")] 20 | public List ExpandSorts 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/list/ExpandSorts.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.List 8 | { 9 |  [Serializable] 10 | public class ExpandSorts : JdObject 11 | { 12 | [JsonProperty("expandValueId")] 13 | public Nullable ExpandValueId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("expandSortValueName")] 20 | public String ExpandSortValueName 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/list/ItemVO.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.List 8 | { 9 |  [Serializable] 10 | public class ItemVO : JdObject 11 | { 12 | [JsonProperty("type")] 13 | public String Type 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("expandSortsList")] 20 | public List ExpandSortsList 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/list/ItemVO2.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.List 8 | { 9 |  [Serializable] 10 | public class ItemVO2 : JdObject 11 | { 12 | [JsonProperty("expandSortsList2")] 13 | public List ExpandSortsList2 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/list/ProductCatelogyList.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.List 8 | { 9 |  [Serializable] 10 | public class ProductCatelogyList : JdObject 11 | { 12 | [JsonProperty("resultCode")] 13 | public Nullable ResultCode 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("catelogyList")] 20 | public List CatelogyList 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/list/WareCatelogyAttributeListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.List 8 | { 9 |  [Serializable] 10 | public class WareCatelogyAttributeListGetResponse : JdResponse 11 | { 12 | [JsonProperty("catelogyAttributeList")] 13 | public CatelogyAttributeList CatelogyAttributeList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/list/WareProductCatelogyListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.List 8 | { 9 |  [Serializable] 10 | public class WareProductCatelogyListGetResponse : JdResponse 11 | { 12 | [JsonProperty("productCatelogyList")] 13 | public ProductCatelogyList ProductCatelogyList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mall/EccMallMallbannercenterAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mall 8 | { 9 |  [Serializable] 10 | public class EccMallMallbannercenterAddResponse : JdResponse 11 | { 12 | [JsonProperty("mall_banner_result")] 13 | public MallBannerResult MallBannerResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mall/EccMallMallbannercenterDeleteResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mall 8 | { 9 |  [Serializable] 10 | public class EccMallMallbannercenterDeleteResponse : JdResponse 11 | { 12 | [JsonProperty("mall_banner_result")] 13 | public MallBannerResult MallBannerResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mall/EccMallMallbannercenterSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mall 8 | { 9 |  [Serializable] 10 | public class EccMallMallbannercenterSearchResponse : JdResponse 11 | { 12 | [JsonProperty("mall_banner_results")] 13 | public List MallBannerResults 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mall/EccMallMallbannercenterUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mall 8 | { 9 |  [Serializable] 10 | public class EccMallMallbannercenterUpdateResponse : JdResponse 11 | { 12 | [JsonProperty("mall_banner_result")] 13 | public MallBannerResult MallBannerResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mall/EccMallMallinfocenterAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mall 8 | { 9 |  [Serializable] 10 | public class EccMallMallinfocenterAddResponse : JdResponse 11 | { 12 | [JsonProperty("mall_info_result")] 13 | public MallInfoResult MallInfoResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mall/EccMallMallinfocenterGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mall 8 | { 9 |  [Serializable] 10 | public class EccMallMallinfocenterGetResponse : JdResponse 11 | { 12 | [JsonProperty("mall_info_result")] 13 | public MallInfoResult MallInfoResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mall/EccMallMallinfocenterUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mall 8 | { 9 |  [Serializable] 10 | public class EccMallMallinfocenterUpdateResponse : JdResponse 11 | { 12 | [JsonProperty("mall_info_result")] 13 | public MallInfoResult MallInfoResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mall/EccMallRecommendAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mall 8 | { 9 |  [Serializable] 10 | public class EccMallRecommendAddResponse : JdResponse 11 | { 12 | [JsonProperty("mall_recommend_result")] 13 | public MallRecommendResult MallRecommendResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mall/EccMallRecommendDeleteResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mall 8 | { 9 |  [Serializable] 10 | public class EccMallRecommendDeleteResponse : JdResponse 11 | { 12 | [JsonProperty("mall_recomment_result")] 13 | public MallRecommendResult MallRecommendResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mall/EccMallRecommendListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mall 8 | { 9 |  [Serializable] 10 | public class EccMallRecommendListGetResponse : JdResponse 11 | { 12 | [JsonProperty("mall_recommend_results")] 13 | public List MallRecommendResults 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mall/EccMallRecommendUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mall 8 | { 9 |  [Serializable] 10 | public class EccMallRecommendUpdateResponse : JdResponse 11 | { 12 | [JsonProperty("mall_recommend_result")] 13 | public MallRecommendResult MallRecommendResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/market/VasSubscribeGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Market 8 | { 9 |  [Serializable] 10 | public class VasSubscribeGetResponse : JdResponse 11 | { 12 | [JsonProperty("item_code")] 13 | public String ItemCode 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("end_date")] 20 | public String EndDate 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/marketing/SellerPromotionActivitymodeAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Marketing 8 | { 9 |  [Serializable] 10 | public class SellerPromotionActivitymodeAddResponse : JdResponse 11 | { 12 | [JsonProperty("id")] 13 | public Nullable Id 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/marketing/SellerPromotionActivitymodeGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Marketing 8 | { 9 |  [Serializable] 10 | public class SellerPromotionActivitymodeGetResponse : JdResponse 11 | { 12 | [JsonProperty("activity_mode")] 13 | public ActivityModeVO ActivityMode 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/marketing/SellerPromotionAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Marketing 8 | { 9 |  [Serializable] 10 | public class SellerPromotionAddResponse : JdResponse 11 | { 12 | [JsonProperty("promo_id")] 13 | public Nullable PromoId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/marketing/SellerPromotionCheckResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Marketing 8 | { 9 |  [Serializable] 10 | public class SellerPromotionCheckResponse : JdResponse 11 | { 12 | [JsonProperty("count")] 13 | public Nullable Count 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/marketing/SellerPromotionCommitResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Marketing 8 | { 9 |  [Serializable] 10 | public class SellerPromotionCommitResponse : JdResponse 11 | { 12 | [JsonProperty("success")] 13 | public Nullable Success 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/marketing/SellerPromotionDeleteResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Marketing 8 | { 9 |  [Serializable] 10 | public class SellerPromotionDeleteResponse : JdResponse 11 | { 12 | [JsonProperty("count")] 13 | public Nullable Count 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/marketing/SellerPromotionGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Marketing 8 | { 9 |  [Serializable] 10 | public class SellerPromotionGetResponse : JdResponse 11 | { 12 | [JsonProperty("promotion_v_o")] 13 | public PromotionVO PromotionVO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/marketing/SellerPromotionOrdermodeAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Marketing 8 | { 9 |  [Serializable] 10 | public class SellerPromotionOrdermodeAddResponse : JdResponse 11 | { 12 | [JsonProperty("ids")] 13 | public List Ids 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/marketing/SellerPromotionOrdermodeListResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Marketing 8 | { 9 |  [Serializable] 10 | public class SellerPromotionOrdermodeListResponse : JdResponse 11 | { 12 | [JsonProperty("promo_order_mode_v_os")] 13 | public List PromoOrderModeVOs 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/marketing/SellerPromotionPropAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Marketing 8 | { 9 |  [Serializable] 10 | public class SellerPromotionPropAddResponse : JdResponse 11 | { 12 | [JsonProperty("ids")] 13 | public List Ids 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/marketing/SellerPromotionPropListResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Marketing 8 | { 9 |  [Serializable] 10 | public class SellerPromotionPropListResponse : JdResponse 11 | { 12 | [JsonProperty("promo_prop_v_o_s")] 13 | public List PromoPropVOS 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/marketing/SellerPromotionResumeResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Marketing 8 | { 9 |  [Serializable] 10 | public class SellerPromotionResumeResponse : JdResponse 11 | { 12 | [JsonProperty("count")] 13 | public Nullable Count 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/marketing/SellerPromotionSkuAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Marketing 8 | { 9 |  [Serializable] 10 | public class SellerPromotionSkuAddResponse : JdResponse 11 | { 12 | [JsonProperty("ids")] 13 | public List Ids 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/marketing/SellerPromotionSuspendResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Marketing 8 | { 9 |  [Serializable] 10 | public class SellerPromotionSuspendResponse : JdResponse 11 | { 12 | [JsonProperty("count")] 13 | public Nullable Count 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mobile/BarCode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mobile 8 | { 9 |  [Serializable] 10 | public class BarCode : JdObject 11 | { 12 | [JsonProperty("resultCode")] 13 | public Nullable ResultCode 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("skuId")] 20 | public Nullable SkuId 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mobile/WareBarcodeWareidGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mobile 8 | { 9 |  [Serializable] 10 | public class WareBarcodeWareidGetResponse : JdResponse 11 | { 12 | [JsonProperty("channelList")] 13 | public BarCode ChannelList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mobile/WareInfoList.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mobile 8 | { 9 |  [Serializable] 10 | public class WareInfoList : JdObject 11 | { 12 | [JsonProperty("resultCode")] 13 | public Nullable ResultCode 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("wareInfoLists")] 20 | public List WareInfoLists 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mobile/WarePromotionActivitiesListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mobile 8 | { 9 |  [Serializable] 10 | public class WarePromotionActivitiesListGetResponse : JdResponse 11 | { 12 | [JsonProperty("cmsActivityList")] 13 | public CmsActivityList CmsActivityList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mobile/WarePromotionActivitywareListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mobile 8 | { 9 |  [Serializable] 10 | public class WarePromotionActivitywareListGetResponse : JdResponse 11 | { 12 | [JsonProperty("cmsActivityWareList")] 13 | public CmsActivityWareList CmsActivityWareList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mobile/WarePromotionCategorywareListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Mobile 8 | { 9 |  [Serializable] 10 | public class WarePromotionCategorywareListGetResponse : JdResponse 11 | { 12 | [JsonProperty("wareInfoList")] 13 | public WareInfoList WareInfoList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/mobile/WarePromotionIndexactivityListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Mobile.PromotionsOpenService; 7 | 8 | namespace JdSdk.Response.Mobile 9 | { 10 |  [Serializable] 11 | public class WarePromotionIndexactivityListGetResponse : JdResponse 12 | { 13 | [JsonProperty("activityInfoList")] 14 | public ActivityList ActivityInfoList 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/order/OrderFbpGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Order; 7 | 8 | namespace JdSdk.Response.Order 9 | { 10 |  [Serializable] 11 | public class OrderFbpGetResponse : JdResponse 12 | { 13 | [JsonProperty("order")] 14 | public OrderDetailInfo OrderDetailInfo 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/order/OrderFbpSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Order; 7 | 8 | namespace JdSdk.Response.Order 9 | { 10 |  [Serializable] 11 | public class OrderFbpSearchResponse : JdResponse 12 | { 13 | [JsonProperty("orderresult")] 14 | public OrderResult OrderResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/order/OrderGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Order; 7 | 8 | namespace JdSdk.Response.Order 9 | { 10 |  [Serializable] 11 | public class OrderGetResponse : JdResponse 12 | { 13 | [JsonProperty("order")] 14 | public OrderDetailInfo OrderDetailInfo 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/order/OrderLbpPrintDataGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Order; 7 | 8 | namespace JdSdk.Response.Order 9 | { 10 |  [Serializable] 11 | public class OrderLbpPrintDataGetResponse : JdResponse 12 | { 13 | [JsonProperty("order_printdata")] 14 | public OrderLbpPrintData ApiOrderPrintData 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/order/OrderPrintDataGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Order; 7 | 8 | namespace JdSdk.Response.Order 9 | { 10 |  [Serializable] 11 | public class OrderPrintDataGetResponse : JdResponse 12 | { 13 | [JsonProperty("order_printdata")] 14 | public OrderPrintData ApiOrderPrintData 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/order/OrderPrintResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Order; 7 | 8 | namespace JdSdk.Response.Order 9 | { 10 |  [Serializable] 11 | public class OrderPrintResponse : JdResponse 12 | { 13 | [JsonProperty("print_result")] 14 | public PrintResult PrintResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/order/OrderSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Order; 7 | 8 | namespace JdSdk.Response.Order 9 | { 10 |  [Serializable] 11 | public class OrderSearchResponse : JdResponse 12 | { 13 | [JsonProperty("order_search")] 14 | public OrderResult OrderResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/order/OrderSopPrintDataGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Order; 7 | 8 | namespace JdSdk.Response.Order 9 | { 10 |  [Serializable] 11 | public class OrderSopPrintDataGetResponse : JdResponse 12 | { 13 | [JsonProperty("order_printdata")] 14 | public OrderSopPrintData ApiOrderPrintData 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/order/OrderSoplPrintDataGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Order; 7 | 8 | namespace JdSdk.Response.Order 9 | { 10 |  [Serializable] 11 | public class OrderSoplPrintDataGetResponse : JdResponse 12 | { 13 | [JsonProperty("order_printdata")] 14 | public OrderSoplPrintData ApiOrderPrintData 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/photo/EccPhotoAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Photo 8 | { 9 |  [Serializable] 10 | public class EccPhotoAddResponse : JdResponse 11 | { 12 | [JsonProperty("photo_proxy_result")] 13 | public JdSdk.Request.Photo.PhotoProxyResult PhotoProxyResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/price/AdwordResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Price 8 | { 9 |  [Serializable] 10 | public class AdwordResponse : JdObject 11 | { 12 | [JsonProperty("skuId")] 13 | public String SkuId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("promotionInfoList")] 20 | public List PromotionInfoList 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/price/WarePriceGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Price 8 | { 9 |  [Serializable] 10 | public class WarePriceGetResponse : JdResponse 11 | { 12 | [JsonProperty("price_changes")] 13 | public List PriceChanges 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/price/WarePromotionInfoGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Price 8 | { 9 |  [Serializable] 10 | public class WarePromotionInfoGetResponse : JdResponse 11 | { 12 | [JsonProperty("promoInfoResponse")] 13 | public AdwordResponse PromoInfoResponse 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/promotion/PromotionSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Promotion 8 | { 9 |  [Serializable] 10 | public class PromotionSearchResponse : JdResponse 11 | { 12 | [JsonProperty("promotion_search")] 13 | public PromotionSearch PromotionSearch 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/recommend/WareBrowsetobuyListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Recommend 8 | { 9 |  [Serializable] 10 | public class WareBrowsetobuyListGetResponse : JdResponse 11 | { 12 | [JsonProperty("browseBuyWidsList")] 13 | public BrowseBuyWidsList BrowseBuyWidsList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/recommend/WareBuytobuyListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Recommend 8 | { 9 |  [Serializable] 10 | public class WareBuytobuyListGetResponse : JdResponse 11 | { 12 | [JsonProperty("buyToBuyWidsList")] 13 | public BuyToBuyWidsList BuyToBuyWidsList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/recommend/WareCombineListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Recommend 8 | { 9 |  [Serializable] 10 | public class WareCombineListGetResponse : JdResponse 11 | { 12 | [JsonProperty("combineBuyingWidsList")] 13 | public CombineBuyingWidsList CombineBuyingWidsList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/recommend/WarePacksGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Recommend 8 | { 9 |  [Serializable] 10 | public class WarePacksGetResponse : JdResponse 11 | { 12 | [JsonProperty("packsList")] 13 | public PacksList PacksList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/seller/PopVenderCenerVenderBrandQueryResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Seller 8 | { 9 |  [Serializable] 10 | public class PopVenderCenerVenderBrandQueryResponse : JdResponse 11 | { 12 | [JsonProperty("brandList")] 13 | public List BrandList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/seller/SellerVenderInfoGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Seller 8 | { 9 |  [Serializable] 10 | public class SellerVenderInfoGetResponse : JdResponse 11 | { 12 | [JsonProperty("vender_info_result")] 13 | public VenderInfoResult VenderInfoResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/seller/VenderBrandPubInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Seller 8 | { 9 |  [Serializable] 10 | public class VenderBrandPubInfo : JdObject 11 | { 12 | [JsonProperty("erpBrandId")] 13 | public Nullable ErpBrandId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("brandName")] 20 | public String BrandName 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/seller/VenderShopQueryResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Seller.ShopSafService; 7 | 8 | namespace JdSdk.Response.Seller 9 | { 10 |  [Serializable] 11 | public class VenderShopQueryResponse : JdResponse 12 | { 13 | [JsonProperty("shop_jos_result")] 14 | public ShopJosResult ShopJosResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/sellercat/SellerCatAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Sellercat 8 | { 9 |  [Serializable] 10 | public class SellerCatAddResponse : JdResponse 11 | { 12 | [JsonProperty("create_time")] 13 | public String CreateTime 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("cid")] 20 | public String Cid 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/sellercat/SellerCatDeleteResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Sellercat 8 | { 9 |  [Serializable] 10 | public class SellerCatDeleteResponse : JdResponse 11 | { 12 | [JsonProperty("cid")] 13 | public Nullable Cid 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("created")] 20 | public String Created 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/sellercat/SellerCatUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Sellercat 8 | { 9 |  [Serializable] 10 | public class SellerCatUpdateResponse : JdResponse 11 | { 12 | [JsonProperty("modified")] 13 | public String Modified 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("cid")] 20 | public String Cid 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/sellercat/SellerCatsGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Sellercat; 7 | 8 | namespace JdSdk.Response.Sellercat 9 | { 10 |  [Serializable] 11 | public class SellerCatsGetResponse : JdResponse 12 | { 13 | [JsonProperty("shopCats")] 14 | public List ShopCatList 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceAlltaskGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class AfsserviceAlltaskGetResponse : JdResponse 11 | { 12 | [JsonProperty("publicResultObject")] 13 | public PublicResultObjectAllTask PublicResultObject 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceAuditRejectResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceManagerFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceAuditRejectResponse : JdResponse 12 | { 13 | [JsonProperty("afsServiceAuditRejectResult")] 14 | public AfsServiceAuditRejectResult AfsServiceAuditRejectResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceCategoryGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceConfFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceCategoryGetResponse : JdResponse 12 | { 13 | [JsonProperty("publicResultObject")] 14 | public PublicResultObjectAfsCategory PublicResultObject 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceCustomerfeedbackTransferResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceManagerFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceCustomerfeedbackTransferResponse : JdResponse 12 | { 13 | [JsonProperty("customerFeedbackTransferResult")] 14 | public CustomerFeedbackTransferResult CustomerFeedbackTransferResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceFinishedtaskGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class AfsserviceFinishedtaskGetResponse : JdResponse 11 | { 12 | [JsonProperty("publicResultObject")] 13 | public PublicResultObjectFinishedTask PublicResultObject 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceFreightUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceManagerFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceFreightUpdateResponse : JdResponse 12 | { 13 | [JsonProperty("afsFreightUpdateResult")] 14 | public AfsFreightUpdateResult AfsFreightUpdateResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceFreightmessageGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class AfsserviceFreightmessageGetResponse : JdResponse 11 | { 12 | [JsonProperty("publicResultObject")] 13 | public PublicResultObjectAfsFreight PublicResultObject 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceHistoryGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceProcessFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceHistoryGetResponse : JdResponse 12 | { 13 | [JsonProperty("publicResultList")] 14 | public PublicResultListAfsServiceHistory PublicResultList 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceJdInterveneResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceManagerFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceJdInterveneResponse : JdResponse 12 | { 13 | [JsonProperty("jdInterveneResult")] 14 | public JdInterveneResult JdInterveneResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceMajorcategoryGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceConfFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceMajorcategoryGetResponse : JdResponse 12 | { 13 | [JsonProperty("publicResultObject")] 14 | public PublicResultObjectMajorCategory PublicResultObject 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceMessagesystemGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceProcessFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceMessagesystemGetResponse : JdResponse 12 | { 13 | [JsonProperty("publicResultList")] 14 | public PublicResultListMessageSystemInfo PublicResultList 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceOriginalorderidGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class AfsserviceOriginalorderidGetResponse : JdResponse 11 | { 12 | [JsonProperty("publicResultObject")] 13 | public PublicResultObjectOrderId PublicResultObject 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceReceivetaskGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class AfsserviceReceivetaskGetResponse : JdResponse 11 | { 12 | [JsonProperty("publicResultObject")] 13 | public PublicResultObjectReceiveTask PublicResultObject 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceRefundinfoGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceProcessFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceRefundinfoGetResponse : JdResponse 12 | { 13 | [JsonProperty("publicResultObject")] 14 | public PublicResultObjectRefundInfo PublicResultObject 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceRemarkAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceManagerFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceRemarkAddResponse : JdResponse 12 | { 13 | [JsonProperty("afsServiceRemarkAddResult")] 14 | public AfsServiceRemarkAddResult AfsServiceRemarkAddResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceReturnAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceManagerFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceReturnAddResponse : JdResponse 12 | { 13 | [JsonProperty("returnAddResult")] 14 | public ReturnAddResult ReturnAddResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceReturnCancelResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceManagerFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceReturnCancelResponse : JdResponse 12 | { 13 | [JsonProperty("returnCancelResult")] 14 | public ReturnCancelResult ReturnCancelResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceServicedetailListResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class AfsserviceServicedetailListResponse : JdResponse 11 | { 12 | [JsonProperty("publicResultList")] 13 | public PublicResultListAfsServiceDetail PublicResultList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceServiceinfoGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class AfsserviceServiceinfoGetResponse : JdResponse 11 | { 12 | [JsonProperty("publicResultObject")] 13 | public PublicResultObjectAfsService PublicResultObject 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceServicelogGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class AfsserviceServicelogGetResponse : JdResponse 11 | { 12 | [JsonProperty("publicResultObject")] 13 | public PublicResultObjectAfsLog PublicResultObject 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceTrackmessageReplayResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceManagerFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceTrackmessageReplayResponse : JdResponse 12 | { 13 | [JsonProperty("trackMessageReplyResult")] 14 | public TrackMessageReplyResult TrackMessageReplyResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceUnpackinginfoGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceProcessFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceUnpackinginfoGetResponse : JdResponse 12 | { 13 | [JsonProperty("publicResultObject")] 14 | public PublicResultObjectUnpackingInfo PublicResultObject 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceUnresolvedtaskGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class AfsserviceUnresolvedtaskGetResponse : JdResponse 11 | { 12 | [JsonProperty("publicResultObject")] 13 | public PublicResultObjectUnresolvedTask PublicResultObject 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceWaitauditGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceManagerFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceWaitauditGetResponse : JdResponse 12 | { 13 | [JsonProperty("publicResultObject")] 14 | public PublicResultObjectWaitAuditTask PublicResultObject 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceWaitfetchGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.AfsServiceManagerFacade; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class AfsserviceWaitfetchGetResponse : JdResponse 12 | { 13 | [JsonProperty("publicResultObject")] 14 | public PublicResultObjectWaitFetch PublicResultObject 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/AfsserviceWaitprocesstaskGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class AfsserviceWaitprocesstaskGetResponse : JdResponse 11 | { 12 | [JsonProperty("publicResultObject")] 13 | public PublicResultObjectWaitProcessTask PublicResultObject 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/PageAfsLog.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class PageAfsLog : JdObject 11 | { 12 | [JsonProperty("totalCount")] 13 | public Nullable TotalCount 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("result")] 20 | public List Result 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/PageAllTask.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class PageAllTask : JdObject 11 | { 12 | [JsonProperty("totalCount")] 13 | public Nullable TotalCount 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("result")] 20 | public List Result 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/PageFinishedTask.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class PageFinishedTask : JdObject 11 | { 12 | [JsonProperty("totalCount")] 13 | public Nullable TotalCount 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("result")] 20 | public List Result 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/PageReceiveTask.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class PageReceiveTask : JdObject 11 | { 12 | [JsonProperty("totalCount")] 13 | public Nullable TotalCount 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("result")] 20 | public List Result 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/PopAfsRefundapplyQuerybyidResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.RefundapplySaf; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class PopAfsRefundapplyQuerybyidResponse : JdResponse 12 | { 13 | [JsonProperty("refundapplyResponse")] 14 | public RefundapplyResponse RefundapplyResponse 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/PopAfsRefundapplyQuerylistResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Service.RefundapplySaf; 7 | 8 | namespace JdSdk.Response.Service 9 | { 10 |  [Serializable] 11 | public class PopAfsRefundapplyQuerylistResponse : JdResponse 12 | { 13 | [JsonProperty("refundApplyResponse")] 14 | public RefundapplyResponse RefundApplyResponse 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/service/PublicResultObjectAfsLog.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Service 8 | { 9 |  [Serializable] 10 | public class PublicResultObjectAfsLog : JdObject 11 | { 12 | [JsonProperty("resultCode")] 13 | public Nullable ResultCode 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("afsLog")] 20 | public PageAfsLog AfsLog 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/sku/OrderOrderDeleteApplyResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Sku 8 | { 9 |  [Serializable] 10 | public class OrderOrderDeleteApplyResponse : JdResponse 11 | { 12 | [JsonProperty("result")] 13 | public ApiJosResult Result 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/sku/OrderOrderDeleteCancelApplyResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Sku 8 | { 9 |  [Serializable] 10 | public class OrderOrderDeleteCancelApplyResponse : JdResponse 11 | { 12 | [JsonProperty("result")] 13 | public ApiJosResult Result 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/sku/OrderVenderRemarkQueryByOrderIdResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Sku 8 | { 9 |  [Serializable] 10 | public class OrderVenderRemarkQueryByOrderIdResponse : JdResponse 11 | { 12 | [JsonProperty("venderRemarkQueryResult")] 13 | public VenderRemarkQueryResult VenderRemarkQueryResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/DropshipDpsCurrenttimeResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Supplier 8 | { 9 |  [Serializable] 10 | public class DropshipDpsCurrenttimeResponse : JdResponse 11 | { 12 | [JsonProperty("currentTime")] 13 | public Nullable CurrentTime 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/DropshipDpsDeliveryResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Supplier 8 | { 9 |  [Serializable] 10 | public class DropshipDpsDeliveryResponse : JdResponse 11 | { 12 | [JsonProperty("deliverResult")] 13 | public DeliverDoResultSetDto DeliverResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/DropshipDpsOutboundResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Supplier 8 | { 9 |  [Serializable] 10 | public class DropshipDpsOutboundResponse : JdResponse 11 | { 12 | [JsonProperty("outBoundResult")] 13 | public OutBoundResultDto OutBoundResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/DropshipDpsPrerefundResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Supplier 8 | { 9 |  [Serializable] 10 | public class DropshipDpsPrerefundResponse : JdResponse 11 | { 12 | [JsonProperty("prerefundResult")] 13 | public PreRefundResult PrerefundResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/DropshipDpsRefuseResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Supplier 8 | { 9 |  [Serializable] 10 | public class DropshipDpsRefuseResponse : JdResponse 11 | { 12 | [JsonProperty("refuseResult")] 13 | public RefuseResult RefuseResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/DropshipDpsSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Supplier 8 | { 9 |  [Serializable] 10 | public class DropshipDpsSearchResponse : JdResponse 11 | { 12 | [JsonProperty("searchResult")] 13 | public QueryOrderForJosResultListDto SearchResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/DropshipDpsSearchpreResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Supplier 8 | { 9 |  [Serializable] 10 | public class DropshipDpsSearchpreResponse : JdResponse 11 | { 12 | [JsonProperty("searchPreResult")] 13 | public ReturnOrderPreForJosResultListDto SearchPreResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/DropshipDpsSearchsingleResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Supplier 8 | { 9 |  [Serializable] 10 | public class DropshipDpsSearchsingleResponse : JdResponse 11 | { 12 | [JsonProperty("searchSingleResult")] 13 | public QuerySingleOrderForJosResultDto SearchSingleResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/PoDetailPageGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Supplier.PurchaseOrderJosAPI; 7 | 8 | namespace JdSdk.Response.Supplier 9 | { 10 |  [Serializable] 11 | public class PoDetailPageGetResponse : JdResponse 12 | { 13 | [JsonProperty("detailResultDto")] 14 | public DetailResultDto DetailResultDto 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/PoListPageGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Supplier.PurchaseOrderJosAPI; 7 | 8 | namespace JdSdk.Response.Supplier 9 | { 10 |  [Serializable] 11 | public class PoListPageGetResponse : JdResponse 12 | { 13 | [JsonProperty("orderResultDto")] 14 | public OrderResultDto OrderResultDto 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/ProcurementOrderConfirmResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Supplier 8 | { 9 |  [Serializable] 10 | public class ProcurementOrderConfirmResponse : JdResponse 11 | { 12 | [JsonProperty("result")] 13 | public Nullable Result 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/ProcurementOrderCreateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Supplier 8 | { 9 |  [Serializable] 10 | public class ProcurementOrderCreateResponse : JdResponse 11 | { 12 | [JsonProperty("purchaseOrderCodes")] 13 | public List PurchaseOrderCodes 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/UserCategory3Dto.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Supplier 8 | { 9 |  [Serializable] 10 | public class UserCategory3Dto : JdObject 11 | { 12 | [JsonProperty("code")] 13 | public String Code 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("name")] 20 | public String Name 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/UserCategory3InfoGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Supplier 8 | { 9 |  [Serializable] 10 | public class UserCategory3InfoGetResponse : JdResponse 11 | { 12 | [JsonProperty("userCategory3Info")] 13 | public UserCategory3InfoDto UserCategory3Info 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/VcCreateReturnOrderResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Supplier 8 | { 9 |  [Serializable] 10 | public class VcCreateReturnOrderResponse : JdResponse 11 | { 12 | [JsonProperty("returnOrderIds")] 13 | public List ReturnOrderIds 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/VcGetReturnOrderDetailResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Supplier.ReturnOrderJosAPI; 7 | 8 | namespace JdSdk.Response.Supplier 9 | { 10 |  [Serializable] 11 | public class VcGetReturnOrderDetailResponse : JdResponse 12 | { 13 | [JsonProperty("detailResultDto")] 14 | public DetailResultDto DetailResultDto 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/VcReturnOrderListPageGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Supplier.ReturnOrderJosAPI; 7 | 8 | namespace JdSdk.Response.Supplier 9 | { 10 |  [Serializable] 11 | public class VcReturnOrderListPageGetResponse : JdResponse 12 | { 13 | [JsonProperty("roResultDto")] 14 | public RoResultDto RoResultDto 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/VcStockSalesDetailGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Supplier.JosStockSalesService; 7 | 8 | namespace JdSdk.Response.Supplier 9 | { 10 |  [Serializable] 11 | public class VcStockSalesDetailGetResponse : JdResponse 12 | { 13 | [JsonProperty("arg43")] 14 | public List Arg43 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/supplier/VcStockSalesGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Supplier.JosStockSalesService; 7 | 8 | namespace JdSdk.Response.Supplier 9 | { 10 |  [Serializable] 11 | public class VcStockSalesGetResponse : JdResponse 12 | { 13 | [JsonProperty("arg36")] 14 | public List Arg36 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/tools/TimeGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Tools 8 | { 9 |  [Serializable] 10 | public class TimeGetResponse : JdResponse 11 | { 12 | [JsonProperty("time")] 13 | public String Time 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceFwlistpvGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Udp 8 | { 9 |  [Serializable] 10 | public class DataserviceFwlistpvGetResponse : JdResponse 11 | { 12 | [JsonProperty("resultDTO")] 13 | public FwResultDTO ResultDTO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceFwreferpvGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Udp 8 | { 9 |  [Serializable] 10 | public class DataserviceFwreferpvGetResponse : JdResponse 11 | { 12 | [JsonProperty("resultDTO")] 13 | public FwResultDTO ResultDTO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShoppvtop15bydayGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Udp 8 | { 9 |  [Serializable] 10 | public class DataserviceShoppvtop15bydayGetResponse : JdResponse 11 | { 12 | [JsonProperty("resultDTO")] 13 | public ShopPvResultDTO ResultDTO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShoppvtop15bymonthGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Udp 8 | { 9 |  [Serializable] 10 | public class DataserviceShoppvtop15bymonthGetResponse : JdResponse 11 | { 12 | [JsonProperty("resultDTO")] 13 | public ShopPvResultDTO ResultDTO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShoppvtop15byweekGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Udp 8 | { 9 |  [Serializable] 10 | public class DataserviceShoppvtop15byweekGetResponse : JdResponse 11 | { 12 | [JsonProperty("resultDTO")] 13 | public ShopPvResultDTO ResultDTO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopsalesbydayGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Udp 8 | { 9 |  [Serializable] 10 | public class DataserviceShopsalesbydayGetResponse : JdResponse 11 | { 12 | [JsonProperty("resultDTO")] 13 | public ShopSalesResultDTO ResultDTO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopsalesbymonthGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Udp 8 | { 9 |  [Serializable] 10 | public class DataserviceShopsalesbymonthGetResponse : JdResponse 11 | { 12 | [JsonProperty("resultDTO")] 13 | public ShopSalesResultDTO ResultDTO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopsalesbyweekGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Udp 8 | { 9 |  [Serializable] 10 | public class DataserviceShopsalesbyweekGetResponse : JdResponse 11 | { 12 | [JsonProperty("resultDTO")] 13 | public ShopSalesResultDTO ResultDTO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopsalestop15bydayGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Udp.ShopSalesTop15Interface; 7 | 8 | namespace JdSdk.Response.Udp 9 | { 10 |  [Serializable] 11 | public class DataserviceShopsalestop15bydayGetResponse : JdResponse 12 | { 13 | [JsonProperty("resultDTO")] 14 | public ShopSalesTop15ResultDTO ResultDTO 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopsalestop15bymonthGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Udp.ShopSalesTop15Interface; 7 | 8 | namespace JdSdk.Response.Udp 9 | { 10 |  [Serializable] 11 | public class DataserviceShopsalestop15bymonthGetResponse : JdResponse 12 | { 13 | [JsonProperty("resultDTO")] 14 | public ShopSalesTop15ResultDTO ResultDTO 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopsalestop15byweekGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Udp.ShopSalesTop15Interface; 7 | 8 | namespace JdSdk.Response.Udp 9 | { 10 |  [Serializable] 11 | public class DataserviceShopsalestop15byweekGetResponse : JdResponse 12 | { 13 | [JsonProperty("resultDTO")] 14 | public ShopSalesTop15ResultDTO ResultDTO 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopuvtop15bydayGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Udp 8 | { 9 |  [Serializable] 10 | public class DataserviceShopuvtop15bydayGetResponse : JdResponse 11 | { 12 | [JsonProperty("resultDTO")] 13 | public ShopUvResultDTO ResultDTO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopuvtop15bymonthGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Udp 8 | { 9 |  [Serializable] 10 | public class DataserviceShopuvtop15bymonthGetResponse : JdResponse 11 | { 12 | [JsonProperty("resultDTO")] 13 | public ShopUvResultDTO ResultDTO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopuvtop15byweekGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Udp 8 | { 9 |  [Serializable] 10 | public class DataserviceShopuvtop15byweekGetResponse : JdResponse 11 | { 12 | [JsonProperty("resultDTO")] 13 | public ShopUvResultDTO ResultDTO 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopvistop15bydayGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Udp.ShopVisTop15Interface; 7 | 8 | namespace JdSdk.Response.Udp 9 | { 10 |  [Serializable] 11 | public class DataserviceShopvistop15bydayGetResponse : JdResponse 12 | { 13 | [JsonProperty("resultDTO")] 14 | public ShopVistResultDTO ResultDTO 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopvistop15bymonthGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Udp.ShopVisTop15Interface; 7 | 8 | namespace JdSdk.Response.Udp 9 | { 10 |  [Serializable] 11 | public class DataserviceShopvistop15bymonthGetResponse : JdResponse 12 | { 13 | [JsonProperty("resultDTO")] 14 | public ShopVistResultDTO ResultDTO 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopvistop15byweekGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Udp.ShopVisTop15Interface; 7 | 8 | namespace JdSdk.Response.Udp 9 | { 10 |  [Serializable] 11 | public class DataserviceShopvistop15byweekGetResponse : JdResponse 12 | { 13 | [JsonProperty("resultDTO")] 14 | public ShopVistResultDTO ResultDTO 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopvoltop15bydayGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Udp.ShopVolTop15Interface; 7 | 8 | namespace JdSdk.Response.Udp 9 | { 10 |  [Serializable] 11 | public class DataserviceShopvoltop15bydayGetResponse : JdResponse 12 | { 13 | [JsonProperty("resultDTO")] 14 | public ShopVolResultDTO ResultDTO 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopvoltop15bymonthGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Udp.ShopVolTop15Interface; 7 | 8 | namespace JdSdk.Response.Udp 9 | { 10 |  [Serializable] 11 | public class DataserviceShopvoltop15bymonthGetResponse : JdResponse 12 | { 13 | [JsonProperty("resultDTO")] 14 | public ShopVolResultDTO ResultDTO 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/udp/DataserviceShopvoltop15byweekGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Udp.ShopVolTop15Interface; 7 | 8 | namespace JdSdk.Response.Udp 9 | { 10 |  [Serializable] 11 | public class DataserviceShopvoltop15byweekGetResponse : JdResponse 12 | { 13 | [JsonProperty("resultDTO")] 14 | public ShopVolResultDTO ResultDTO 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/user/EccUserGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.User 8 | { 9 |  [Serializable] 10 | public class EccUserGetResponse : JdResponse 11 | { 12 | [JsonProperty("user_result")] 13 | public UserResult UserResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/user/EccUserSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.User 8 | { 9 |  [Serializable] 10 | public class EccUserSearchResponse : JdResponse 11 | { 12 | [JsonProperty("user_paging_result")] 13 | public UserPagingResult UserPagingResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/user/UserPagingResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.User 8 | { 9 |  [Serializable] 10 | public class UserPagingResult : JdObject 11 | { 12 | [JsonProperty("users")] 13 | public List Users 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("total_size")] 20 | public Nullable TotalSize 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/vender/VenderGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Vender; 7 | 8 | namespace JdSdk.Response.Vender 9 | { 10 |  [Serializable] 11 | public class VenderGetResponse : JdResponse 12 | { 13 | [JsonProperty("vender")] 14 | public Domain.Vender.Vender Vender 15 | { 16 | get; 17 | set; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/BookEntity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class BookEntity : JdObject 11 | { 12 | [JsonProperty("sku_id")] 13 | public Nullable SkuId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("book_info")] 20 | public BookInfo BookInfo 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/EccItemAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class EccItemAddResponse : JdResponse 11 | { 12 | [JsonProperty("item_proxy_result")] 13 | public ItemProxyResult ItemProxyResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/EccItemDelistingResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class EccItemDelistingResponse : JdResponse 11 | { 12 | [JsonProperty("item_result")] 13 | public ItemResult Result 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/EccItemGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class EccItemGetResponse : JdResponse 11 | { 12 | [JsonProperty("item_proxy_result")] 13 | public ItemProxyResult ItemProxyResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/EccItemListingResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class EccItemListingResponse : JdResponse 11 | { 12 | [JsonProperty("result")] 13 | public ItemResult Result 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/EccItemSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class EccItemSearchResponse : JdResponse 11 | { 12 | [JsonProperty("result")] 13 | public ItemPagingProxyResult Result 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/EccItemUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class EccItemUpdateResponse : JdResponse 11 | { 12 | [JsonProperty("item_proxy_result")] 13 | public ItemProxyResult ItemProxyResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/EccSkuGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class EccSkuGetResponse : JdResponse 11 | { 12 | [JsonProperty("item_sku_result")] 13 | public ItemSkuResult ItemSkuResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/EccSkuSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class EccSkuSearchResponse : JdResponse 11 | { 12 | [JsonProperty("item_sku_result_list")] 13 | public ItemSkuListResult ItemSkuResultList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/ItemSkuListResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class ItemSkuListResult : JdObject 11 | { 12 | [JsonProperty("item_sku_result")] 13 | public List ItemSkuResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("total")] 20 | public Nullable Total 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/Provice.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class Provice : JdObject 11 | { 12 | [JsonProperty("label")] 13 | public String Label 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("value")] 20 | public String Value 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/ProvinceList.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class ProvinceList : JdObject 11 | { 12 | [JsonProperty("resultCode")] 13 | public Nullable ResultCode 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("provinces")] 20 | public List Provinces 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/SkuCustomGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Ware; 7 | 8 | namespace JdSdk.Response.Ware 9 | { 10 |  [Serializable] 11 | public class SkuCustomGetResponse : JdResponse 12 | { 13 | [JsonProperty("sku")] 14 | public Domain.Ware.Sku Sku 15 | { 16 | get; 17 | set; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/VideoEntity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class VideoEntity : JdObject 11 | { 12 | [JsonProperty("skuId")] 13 | public Nullable SkuId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("videoInfo")] 20 | public VideoInfo VideoInfo 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareAddVenderSellSkuResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Request.Ware; 7 | 8 | namespace JdSdk.Response.Ware 9 | { 10 |  [Serializable] 11 | public class WareAddVenderSellSkuResponse : JdResponse 12 | { 13 | [JsonProperty("wareaddvender_sellsku")] 14 | public WareAddVenderSellSkuRequest WareAddVenderSellSkuRequest 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareAreaLimitUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareAreaLimitUpdateResponse : JdResponse 11 | { 12 | [JsonProperty("ware_id")] 13 | public Nullable WareId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareBasebookGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareBasebookGetResponse : JdResponse 11 | { 12 | [JsonProperty("BookEntity")] 13 | public List BookEntity 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareBaseproductGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareBaseproductGetResponse : JdResponse 11 | { 12 | [JsonProperty("product_base")] 13 | public List ProductBase 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareBasevideoGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareBasevideoGetResponse : JdResponse 11 | { 12 | [JsonProperty("videoEntitys")] 13 | public List VideoEntitys 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareBookbigfieldGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareBookbigfieldGetResponse : JdResponse 11 | { 12 | [JsonProperty("BookBigFieldEntity")] 13 | public List BookBigFieldEntity 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareDeleteResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareDeleteResponse : JdResponse 11 | { 12 | [JsonProperty("ware_id")] 13 | public Nullable WareId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("created")] 20 | public String Created 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Ware; 7 | 8 | namespace JdSdk.Response.Ware 9 | { 10 |  [Serializable] 11 | public class WareGetResponse : JdResponse 12 | { 13 | [JsonProperty("ware")] 14 | public Domain.Ware.Ware Ware 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareProductDetailSearchListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareProductDetailSearchListGetResponse : JdResponse 11 | { 12 | [JsonProperty("productDetailList")] 13 | public ProductDetailList ProductDetailList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareProductSearchListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareProductSearchListGetResponse : JdResponse 11 | { 12 | [JsonProperty("searchProductList")] 13 | public SearchProductList SearchProductList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareProductStockListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareProductStockListGetResponse : JdResponse 11 | { 12 | [JsonProperty("productStock")] 13 | public ProductStock ProductStock 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareProductimageGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareProductimageGetResponse : JdResponse 11 | { 12 | [JsonProperty("image_path_list")] 13 | public List ImagePathList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareProductsortGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareProductsortGetResponse : JdResponse 11 | { 12 | [JsonProperty("product_sorts")] 13 | public List ProductSorts 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WarePromotionSearchCatelogyListResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WarePromotionSearchCatelogyListResponse : JdResponse 11 | { 12 | [JsonProperty("searchCatelogyList")] 13 | public SearchCatelogyList SearchCatelogyList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WarePropimgDeleteResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WarePropimgDeleteResponse : JdResponse 11 | { 12 | [JsonProperty("image_id")] 13 | public Nullable ImageId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("created")] 20 | public String Created 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WarePropimgUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WarePropimgUpdateResponse : JdResponse 11 | { 12 | [JsonProperty("image_id")] 13 | public Nullable ImageId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("created")] 20 | public String Created 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareSelectedProvinceListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareSelectedProvinceListGetResponse : JdResponse 11 | { 12 | [JsonProperty("provinceList")] 13 | public ProvinceList ProvinceList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareSkuAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareSkuAddResponse : JdResponse 11 | { 12 | [JsonProperty("created")] 13 | public String Created 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("sku_id")] 20 | public String SkuId 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareSkuDeleteResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareSkuDeleteResponse : JdResponse 11 | { 12 | [JsonProperty("sku_id")] 13 | public Nullable SkuId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("modified")] 20 | public String Modified 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareSkuGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Ware; 7 | 8 | namespace JdSdk.Response.Ware 9 | { 10 |  [Serializable] 11 | public class WareSkuGetResponse : JdResponse 12 | { 13 | [JsonProperty("sku")] 14 | public Domain.Ware.Sku Sku 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareSkuSearchListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareSkuSearchListGetResponse : JdResponse 11 | { 12 | [JsonProperty("productSkuList")] 13 | public ProductSkuList ProductSkuList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareSkuUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareSkuUpdateResponse : JdResponse 11 | { 12 | [JsonProperty("modified")] 13 | public String Modified 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("sku_id")] 20 | public String SkuId 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareSkusGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Ware; 7 | 8 | namespace JdSdk.Response.Ware 9 | { 10 |  [Serializable] 11 | public class WareSkusGetResponse : JdResponse 12 | { 13 | [JsonProperty("skus")] 14 | public List Skus 15 | { 16 | get; 17 | set; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareTemplateAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareTemplateAddResponse : JdResponse 11 | { 12 | [JsonProperty("id")] 13 | public Nullable Id 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareTemplateDeleteResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareTemplateDeleteResponse : JdResponse 11 | { 12 | [JsonProperty("id")] 13 | public Nullable Id 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareTemplateGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Ware; 7 | 8 | namespace JdSdk.Response.Ware 9 | { 10 |  [Serializable] 11 | public class WareTemplateGetResponse : JdResponse 12 | { 13 | [JsonProperty("ware_template")] 14 | public WareTemplate WareTemplate 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareTemplateIdsAndNamesGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Ware; 7 | 8 | namespace JdSdk.Response.Ware 9 | { 10 |  [Serializable] 11 | public class WareTemplateIdsAndNamesGetResponse : JdResponse 12 | { 13 | [JsonProperty("ware_templates")] 14 | public List WareTemplateList 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareTemplateToWaresUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareTemplateToWaresUpdateResponse : JdResponse 11 | { 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareTemplateUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareTemplateUpdateResponse : JdResponse 11 | { 12 | [JsonProperty("id")] 13 | public Nullable Id 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareUpdateDelistingResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareUpdateDelistingResponse : JdResponse 11 | { 12 | [JsonProperty("ware_id")] 13 | public Nullable WareId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("modified")] 20 | public String Modified 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareUpdateListingResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareUpdateListingResponse : JdResponse 11 | { 12 | [JsonProperty("ware_id")] 13 | public Nullable WareId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("modified")] 20 | public String Modified 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareUpdateVenderSellSkuResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Request.Ware; 7 | 8 | namespace JdSdk.Response.Ware 9 | { 10 |  [Serializable] 11 | public class WareUpdateVenderSellSkuResponse : JdResponse 12 | { 13 | [JsonProperty("wareupdatevender_sellsku")] 14 | public WareUpdateVenderSellSkuRequest WareupdateVenderSellSkuRequest 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/ware/WareVideobigfieldGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Ware 8 | { 9 |  [Serializable] 10 | public class WareVideobigfieldGetResponse : JdResponse 11 | { 12 | [JsonProperty("VideoBigFieldEntity")] 13 | public List VideoBigFieldEntity 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/website/category/WareAttributesGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Category; 7 | 8 | namespace JdSdk.Response.Website.Category 9 | { 10 |  [Serializable] 11 | public class WareAttributesGetResponse : JdResponse 12 | { 13 | [JsonProperty("wareattributes")] 14 | public List WareAttributes 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/website/category/WareCategoryGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Category; 7 | 8 | namespace JdSdk.Response.Website.Category 9 | { 10 |  [Serializable] 11 | public class WareCategoryGetResponse : JdResponse 12 | { 13 | [JsonProperty("warecategories")] 14 | public List WareCategories 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/website/cps/CPSCatalogPageGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Cps; 7 | 8 | namespace JdSdk.Response.Website.Cps 9 | { 10 |  [Serializable] 11 | public class CPSCatalogPageGetResponse : JdResponse 12 | { 13 | [JsonProperty("tuiguang_wares")] 14 | public List PromoteWares 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/website/cps/CPSSpreadHomeInfoResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Cps; 7 | 8 | namespace JdSdk.Response.Website.Cps 9 | { 10 |  [Serializable] 11 | public class CPSSpreadHomeInfoResponse : JdResponse 12 | { 13 | [JsonProperty("home_page_info")] 14 | public CPSSpreadHomeInfoModule HomeInfoModule 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/website/recommend/AnotherBuyCombineRecommendResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Recommend; 7 | 8 | namespace JdSdk.Response.Website.Recommend 9 | { 10 |  [Serializable] 11 | public class AnotherBuyCombineRecommendResponse : JdResponse 12 | { 13 | [JsonProperty("favoritewares")] 14 | public List FavoriteWares 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/website/recommend/CombineRecommendResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Recommend; 7 | 8 | namespace JdSdk.Response.Website.Recommend 9 | { 10 |  [Serializable] 11 | public class CombineRecommendResponse : JdResponse 12 | { 13 | [JsonProperty("favoritewares")] 14 | public List FavoriteWares 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/website/recommend/UserBrowseBuyRecommendResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Recommend; 7 | 8 | namespace JdSdk.Response.Website.Recommend 9 | { 10 |  [Serializable] 11 | public class UserBrowseBuyRecommendResponse : JdResponse 12 | { 13 | [JsonProperty("favoritewares")] 14 | public List FavoriteWares 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/website/ware/RegionInfoGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Ware; 7 | 8 | namespace JdSdk.Response.Website.Ware 9 | { 10 |  [Serializable] 11 | public class RegionInfoGetResponse : JdResponse 12 | { 13 | [JsonProperty("regions")] 14 | public List Regions 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/website/ware/SkuJdPriceGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Website.Ware 8 | { 9 |  [Serializable] 10 | public class SkuJdPriceGetResponse : JdResponse 11 | { 12 | [JsonProperty("sku_id")] 13 | public String SkuId 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("jd_price")] 20 | public String JdPrice 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/website/ware/WareGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Ware; 7 | 8 | namespace JdSdk.Response.Website.Ware 9 | { 10 |  [Serializable] 11 | public class WareGetResponse : JdResponse 12 | { 13 | [JsonProperty("waremodel")] 14 | public Domain.Website.Ware.Ware WareModel 15 | { 16 | get; 17 | set; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Source/JdSdk/response/website/ware/WareSearchByCidResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Ware; 7 | 8 | namespace JdSdk.Response.Website.Ware 9 | { 10 |  [Serializable] 11 | public class WareSearchByCidResponse : JdResponse 12 | { 13 | [JsonProperty("ware_infos")] 14 | public List WareInfos 15 | { 16 | get; 17 | set; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Source/JdSdk/response/website/ware/WareSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Website.Ware; 7 | 8 | namespace JdSdk.Response.Website.Ware 9 | { 10 |  [Serializable] 11 | public class WareSearchResponse : JdResponse 12 | { 13 | [JsonProperty("ware_infos")] 14 | public List WareInfos 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/weigou/OrderPaymentGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Weigou.PaymentShipmentExportService; 7 | 8 | namespace JdSdk.Response.Weigou 9 | { 10 |  [Serializable] 11 | public class OrderPaymentGetResponse : JdResponse 12 | { 13 | [JsonProperty("getpaymentlist_result")] 14 | public GetPaymentListResult GetpaymentlistResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/wms/HashMap.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Wms 8 | { 9 |  [Serializable] 10 | public class HashMap : JdObject 11 | { 12 | [JsonProperty("order_list")] 13 | public List OrderList 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/wms/LogisticsCarriersListResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Wms 8 | { 9 |  [Serializable] 10 | public class LogisticsCarriersListResponse : JdResponse 11 | { 12 | [JsonProperty("carriers_details")] 13 | public List CarriersDetails 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/wms/LogisticsOrderSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Wms 8 | { 9 |  [Serializable] 10 | public class LogisticsOrderSearchResponse : JdResponse 11 | { 12 | [JsonProperty("orders")] 13 | public HashMap Orders 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/wms/LogisticsReturnorderAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Wms 8 | { 9 |  [Serializable] 10 | public class LogisticsReturnorderAddResponse : JdResponse 11 | { 12 | [JsonProperty("process_result")] 13 | public ProcessResult ProcessResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/wms/LogisticsReturnorderCancelResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Wms 8 | { 9 |  [Serializable] 10 | public class LogisticsReturnorderCancelResponse : JdResponse 11 | { 12 | [JsonProperty("process_result")] 13 | public ProcessResult ProcessResult 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/wms/LogisticsReturnorderQueryResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Wms 8 | { 9 |  [Serializable] 10 | public class LogisticsReturnorderQueryResponse : JdResponse 11 | { 12 | [JsonProperty("response_return_order")] 13 | public ResponseReturnOrder ResponseReturnOrder 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/wms/LogisticsStockSearchResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Wms 8 | { 9 |  [Serializable] 10 | public class LogisticsStockSearchResponse : JdResponse 11 | { 12 | [JsonProperty("stock")] 13 | public ResponseStock Stock 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/wms/LogisticsWarehouseListResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Wms 8 | { 9 |  [Serializable] 10 | public class LogisticsWarehouseListResponse : JdResponse 11 | { 12 | [JsonProperty("warehouse_details")] 13 | public List WarehouseDetails 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/workorder/RestWorkorderReplyResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Workorder 8 | { 9 |  [Serializable] 10 | public class RestWorkorderReplyResponse : JdResponse 11 | { 12 | [JsonProperty("work_order")] 13 | public WorkOrderResponse WorkOrder 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/workorder/SafWorkPage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Workorder 8 | { 9 |  [Serializable] 10 | public class SafWorkPage : JdObject 11 | { 12 | [JsonProperty("result")] 13 | public List Result 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("total_count")] 20 | public Nullable TotalCount 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/workorder/WorkOrderResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Workorder 8 | { 9 |  [Serializable] 10 | public class WorkOrderResponse : JdObject 11 | { 12 | [JsonProperty("result_code")] 13 | public Nullable ResultCode 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | [JsonProperty("result_msg")] 20 | public String ResultMsg 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Source/JdSdk/response/workorder/WosSubbiztypelistGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Workorder 8 | { 9 |  [Serializable] 10 | public class WosSubbiztypelistGetResponse : JdResponse 11 | { 12 | [JsonProperty("saf_biztype_Dtos")] 13 | public List SafBiztypeDtos 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/workorder/WosWorkinfoGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Workorder 8 | { 9 |  [Serializable] 10 | public class WosWorkinfoGetResponse : JdResponse 11 | { 12 | [JsonProperty("result")] 13 | public List Result 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/workorder/WosWorklistGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | 7 | namespace JdSdk.Response.Workorder 8 | { 9 |  [Serializable] 10 | public class WosWorklistGetResponse : JdResponse 11 | { 12 | [JsonProperty("page")] 13 | public SafWorkPage Page 14 | { 15 | get; 16 | set; 17 | } 18 | 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /Source/JdSdk/response/zhijian/MarketServiceQtReportAddResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Zhijian.QTReportService; 7 | 8 | namespace JdSdk.Response.Zhijian 9 | { 10 |  [Serializable] 11 | public class MarketServiceQtReportAddResponse : JdResponse 12 | { 13 | [JsonProperty("publicResult")] 14 | public AddResult PublicResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/zhijian/MarketServiceQtReportDeleteResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Zhijian.QTReportService; 7 | 8 | namespace JdSdk.Response.Zhijian 9 | { 10 |  [Serializable] 11 | public class MarketServiceQtReportDeleteResponse : JdResponse 12 | { 13 | [JsonProperty("publicResult")] 14 | public ReportDeleteResult PublicResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/zhijian/MarketServiceQtReportGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Zhijian.QTReportService; 7 | 8 | namespace JdSdk.Response.Zhijian 9 | { 10 |  [Serializable] 11 | public class MarketServiceQtReportGetResponse : JdResponse 12 | { 13 | [JsonProperty("publicResult")] 14 | public GetResult PublicResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/zhijian/MarketServiceQtReportListGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Zhijian.QTReportService; 7 | 8 | namespace JdSdk.Response.Zhijian 9 | { 10 |  [Serializable] 11 | public class MarketServiceQtReportListGetResponse : JdResponse 12 | { 13 | [JsonProperty("publicResult")] 14 | public ReportsResult PublicResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/zhijian/MarketServiceQtReportUpdateResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Zhijian.QTReportService; 7 | 8 | namespace JdSdk.Response.Zhijian 9 | { 10 |  [Serializable] 11 | public class MarketServiceQtReportUpdateResponse : JdResponse 12 | { 13 | [JsonProperty("publicResult")] 14 | public UpdateResult PublicResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/JdSdk/response/zhijian/MarketServiceQtSubscribeGetResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml.Serialization; 3 | using System.Collections; 4 | using System.Collections.Generic; 5 | using Newtonsoft.Json; 6 | using JdSdk.Domain.Zhijian.QTArticleService; 7 | 8 | namespace JdSdk.Response.Zhijian 9 | { 10 |  [Serializable] 11 | public class MarketServiceQtSubscribeGetResponse : JdResponse 12 | { 13 | [JsonProperty("qtArticleResult")] 14 | public QtArticleResult QtArticleResult 15 | { 16 | get; 17 | set; 18 | } 19 | 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /Source/Readme.txt: -------------------------------------------------------------------------------- 1 | JdSdk2 2 | 京东开放平台.NET版SDK 3 | 本SDK代码完全根据京东官方JavaSdk自动生成。API部分代码结构一致。 4 | 所有Java Sdk中set get方法转换到.NET为属性,与类名称或子类名称同名的属性名称在前面加入下划线("_")以区分。 5 | 6 | 版本号规则变更为与编译发布日期一致。 7 | 8 | 9 | SDK交流QQ群:236361019 SDK交流 10 | 11 | .NET技术交流QQ群:43315956 12 | 13 | 14 | 15 | 源码托管地址: 16 | GitHub:https://github.com/starpeng/JdSdk2/ 17 | 京东:https://code.jd.com -------------------------------------------------------------------------------- /Source/libs/msbuild/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starpeng/JdSdk2/a26db0a2e4c5c0a94b1a0b96a38bab27c85e2cd2/Source/libs/msbuild/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /Source/libs/msbuild/MSBuild.Community.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starpeng/JdSdk2/a26db0a2e4c5c0a94b1a0b96a38bab27c85e2cd2/Source/libs/msbuild/MSBuild.Community.Tasks.dll --------------------------------------------------------------------------------