gitextract_5tcw8vn_/ ├── .editorconfig ├── .gitattributes ├── .github/ │ └── workflows/ │ └── publish.yml ├── .gitignore ├── .vscode/ │ └── launch.json ├── LICENSE ├── PddOpenSdk.sln ├── README.md ├── docs/ │ └── CHANGELOG.md └── src/ ├── AspNetCore/ │ ├── GlobalUsing.cs │ ├── PddOpenSdk.AspNetCore.csproj │ ├── PddOptions.cs │ ├── PddService.cs │ ├── PddServiceCollectionExtensions.cs │ ├── PddSocketHostServiceBase.cs │ └── README.MD ├── Console/ │ ├── Console.csproj │ ├── Function.cs │ ├── GlobalUsing.cs │ ├── Helpers/ │ │ ├── IndentBuilder.cs │ │ ├── NameHelper.cs │ │ └── PddApiDocHelper.cs │ ├── PddModels/ │ │ ├── ApiDocResponseModel.cs │ │ ├── CatListResponseModel.cs │ │ └── ListResponseModel.cs │ ├── PddService.cs.tpl │ └── Program.cs ├── ConsoleSample/ │ ├── ConsoleSample.csproj │ └── Program.cs ├── PddOpenSdk/ │ ├── ClientConfig.cs │ ├── Common/ │ │ └── Function.cs │ ├── GlobalUsing.cs │ ├── Models/ │ │ ├── AccessTokenResponseModel.cs │ │ ├── PddErrorResponseModel.cs │ │ ├── PddRequestModel.cs │ │ ├── PddResponseModel.cs │ │ ├── Request/ │ │ │ ├── Ad/ │ │ │ │ ├── AccountAdApiAdvertiserOpen.cs │ │ │ │ ├── BalanceAdApiAdvertiserQueryAccount.cs │ │ │ │ ├── BidAdApiUnitTrUpdateOptimization.cs │ │ │ │ ├── BidAdApiUnitUpdateUnit.cs │ │ │ │ ├── ContentAdApiUnitCreativeUpdate.cs │ │ │ │ ├── CostAdApiPlanQueryCanUpdateMax.cs │ │ │ │ ├── CostAdApiPlanUpdateMax.cs │ │ │ │ ├── CostAdApiUnitTrUpdateMax.cs │ │ │ │ ├── CreateAdApiKeyword.cs │ │ │ │ ├── CreateAdApiPlan.cs │ │ │ │ ├── CreateAdApiUnit.cs │ │ │ │ ├── CreateAdApiUnitCreative.cs │ │ │ │ ├── CreateAdApiUnitTr.cs │ │ │ │ ├── CreativeAdApiUnitCreativeUpdateSmart.cs │ │ │ │ ├── DeleteAdApiKeyword.cs │ │ │ │ ├── DeleteAdApiPlan.cs │ │ │ │ ├── DeleteAdApiUnit.cs │ │ │ │ ├── DeleteAdApiUnitBid.cs │ │ │ │ ├── DeleteAdApiUnitCreative.cs │ │ │ │ ├── DeleteAdApiUnitTr.cs │ │ │ │ ├── DetailAdApiAdvertiserQuery.cs │ │ │ │ ├── DiscountAdApiPlanUpdatePlan.cs │ │ │ │ ├── GetAdApiKeywordRecommend.cs │ │ │ │ ├── GetAdApiKeywordRelevance.cs │ │ │ │ ├── ImagesAdApiGoodsQueryGallery.cs │ │ │ │ ├── ImagesAdApiGoodsQueryLong.cs │ │ │ │ ├── InfoAdApiAdvertiserQueryAccount.cs │ │ │ │ ├── InfoAdApiUnitTrListAd.cs │ │ │ │ ├── ListAdApiKeywordQuery.cs │ │ │ │ ├── ListAdApiPlanQuery.cs │ │ │ │ ├── ListAdApiUnitBidQuery.cs │ │ │ │ ├── ListAdApiUnitBidQueryTargetingTag.cs │ │ │ │ ├── ListAdApiUnitCreativeQuery.cs │ │ │ │ ├── ListAdApiUnitQuery.cs │ │ │ │ ├── MessageAdApiUnitUpdateOptimization.cs │ │ │ │ ├── NameAdApiPlanUpdatePlan.cs │ │ │ │ ├── NameAdApiUnitTrUpdateAd.cs │ │ │ │ ├── NameAdApiUnitUpdateUnit.cs │ │ │ │ ├── OcpcAdApiPlanUpdatePlanTo.cs │ │ │ │ ├── PageAdApiGoodsQuery.cs │ │ │ │ ├── PlanAdApiPlanQueryCanCreateAd.cs │ │ │ │ ├── PrivilegeAdApiUnitTrListGoodsBid.cs │ │ │ │ ├── ProfileAdApiUnitBidQueryBaseLocation.cs │ │ │ │ ├── ProfileAdApiUnitBidQueryBaseTarget.cs │ │ │ │ ├── QueryAdApiReportActivityReport.cs │ │ │ │ ├── QueryAdApiReportDailyReport.cs │ │ │ │ ├── QueryAdApiReportEntityReport.cs │ │ │ │ ├── QueryAdApiReportHourlyReport.cs │ │ │ │ ├── QueryAdApiReportTrDailyReport.cs │ │ │ │ ├── QueryAdApiReportTrHourlyReport.cs │ │ │ │ ├── RateAdApiUnitCreativeDistributeFlow.cs │ │ │ │ ├── RateAdApiUnitCreativeQueryFlow.cs │ │ │ │ ├── RoiAdApiUnitTrUpdateTarget.cs │ │ │ │ ├── StatusAdApiPlanUpdateDataOperate.cs │ │ │ │ ├── StatusAdApiUnitCreativeUpdateDataOperate.cs │ │ │ │ ├── StatusAdApiUnitTrUpdateDataOperate.cs │ │ │ │ ├── StatusAdApiUnitUpdateDataOperate.cs │ │ │ │ ├── SuggestAdApiUnitTrListGoodsBid.cs │ │ │ │ ├── SyncAdApiUnitBid.cs │ │ │ │ ├── TitleAdApiUnitCreativeCheck.cs │ │ │ │ ├── UpdateAdApiKeyword.cs │ │ │ │ └── UpdateAdApiUnitBid.cs │ │ │ ├── Ddk/ │ │ │ │ ├── AuthDdkGoodsPromotionRight.cs │ │ │ │ ├── BindDdkPidMediaid.cs │ │ │ │ ├── CompleteDdkReportVideoUploadPart.cs │ │ │ │ ├── CreateDdkCashgift.cs │ │ │ │ ├── DetailDdkGoods.cs │ │ │ │ ├── GenDdkGoodsZsUnitUrl.cs │ │ │ │ ├── GenDdkResourceUrl.cs │ │ │ │ ├── GenDdkWeappQrcodeUrl.cs │ │ │ │ ├── GenerateDdkCmsPromUrl.cs │ │ │ │ ├── GenerateDdkGoodsPid.cs │ │ │ │ ├── GenerateDdkGoodsPromotionUrl.cs │ │ │ │ ├── GenerateDdkRpPromUrl.cs │ │ │ │ ├── GetDdkGoodsRecommend.cs │ │ │ │ ├── GetDdkOrderDetail.cs │ │ │ │ ├── GetDdkOrderListIncrement.cs │ │ │ │ ├── GetDdkOrderListRange.cs │ │ │ │ ├── InitDdkReportVideoUploadPart.cs │ │ │ │ ├── ListDdkTmcActivity.cs │ │ │ │ ├── ParseDdkUrlShort.cs │ │ │ │ ├── PartDdkReportVideoUpload.cs │ │ │ │ ├── QueryDdkCashgiftData.cs │ │ │ │ ├── QueryDdkGoodsPid.cs │ │ │ │ ├── QueryDdkMemberAuthority.cs │ │ │ │ ├── QueryDdkPromotionGoods.cs │ │ │ │ ├── QueryDdkStatisticsData.cs │ │ │ │ ├── SearchDdkGoods.cs │ │ │ │ ├── UpdateDdkCashgiftStatus.cs │ │ │ │ ├── UploadDdkReportImg.cs │ │ │ │ └── UploadDdkReportVideo.cs │ │ │ ├── DdkTools/ │ │ │ │ ├── BindDdkOauthPidMediaid.cs │ │ │ │ ├── CreateDdkOauthCashgift.cs │ │ │ │ ├── DetailDdkOauthGoods.cs │ │ │ │ ├── GenDdkOauthGoodsZsUnitUrl.cs │ │ │ │ ├── GenDdkOauthResourceUrl.cs │ │ │ │ ├── GenDdkOauthWeappQrcodeUrl.cs │ │ │ │ ├── GenerateDdkOauthCmsPromUrl.cs │ │ │ │ ├── GenerateDdkOauthGoodsPid.cs │ │ │ │ ├── GenerateDdkOauthGoodsPromUrl.cs │ │ │ │ ├── GenerateDdkOauthRpPromUrl.cs │ │ │ │ ├── GetDdkAllOrderListIncrement.cs │ │ │ │ ├── GetDdkOauthGoodsRecommend.cs │ │ │ │ ├── GetDdkOauthOrderDetail.cs │ │ │ │ ├── GetDdkOauthOrderListIncrement.cs │ │ │ │ ├── QueryDdkOauthGoodsPid.cs │ │ │ │ ├── QueryDdkOauthMemberAuthority.cs │ │ │ │ ├── SearchDdkOauthGoods.cs │ │ │ │ └── UpdateDdkOauthCashgiftStatus.cs │ │ │ ├── Fds/ │ │ │ │ ├── CancelFdsWaybill.cs │ │ │ │ ├── GetFdsOrder.cs │ │ │ │ ├── GetFdsOrderList.cs │ │ │ │ ├── GetFdsRole.cs │ │ │ │ ├── GetFdsWaybill.cs │ │ │ │ ├── ReturnFdsWaybill.cs │ │ │ │ └── SlaveFdsWaybillReturn.cs │ │ │ ├── Finance/ │ │ │ │ └── GetFinanceBalanceDailyBillUrl.cs │ │ │ ├── Goods/ │ │ │ │ ├── AddGoods.cs │ │ │ │ ├── AddGoodsSizespecTemplate.cs │ │ │ │ ├── CatsGoodsAuthorization.cs │ │ │ │ ├── ChangeGoodsCpsMallUnit.cs │ │ │ │ ├── ChangeGoodsCpsUnit.cs │ │ │ │ ├── CheckGoodsPrice.cs │ │ │ │ ├── CodeSelectGoodsLabel.cs │ │ │ │ ├── CommitDeleteDraft.cs │ │ │ │ ├── CommitDeleteGoods.cs │ │ │ │ ├── CommitGoodsEditGoods.cs │ │ │ │ ├── CommitGoodsSubmitGoods.cs │ │ │ │ ├── CreateGoodsCpsMallUnit.cs │ │ │ │ ├── CreateGoodsCpsUnit.cs │ │ │ │ ├── CreateGoodsLogisticsSerTemplate.cs │ │ │ │ ├── CreateGoodsLogisticsTemplate.cs │ │ │ │ ├── CreateGoodsMaterial.cs │ │ │ │ ├── DeleteGoodsCpsUnit.cs │ │ │ │ ├── DeleteGoodsLogisticsSerTemplate.cs │ │ │ │ ├── DeleteGoodsMaterial.cs │ │ │ │ ├── DeleteGoodsSizespecTemplate.cs │ │ │ │ ├── DetailGoodsLogisticsSerTemplate.cs │ │ │ │ ├── EditGoodsChildSku.cs │ │ │ │ ├── GetGoodsAdvicePrice.cs │ │ │ │ ├── GetGoodsCatRule.cs │ │ │ │ ├── GetGoodsCatTemplate.cs │ │ │ │ ├── GetGoodsCats.cs │ │ │ │ ├── GetGoodsCommitDetail.cs │ │ │ │ ├── GetGoodsCommitList.cs │ │ │ │ ├── GetGoodsCommitStatus.cs │ │ │ │ ├── GetGoodsCountry.cs │ │ │ │ ├── GetGoodsDetail.cs │ │ │ │ ├── GetGoodsFileInfo.cs │ │ │ │ ├── GetGoodsInformation.cs │ │ │ │ ├── GetGoodsLatestCommitStatus.cs │ │ │ │ ├── GetGoodsList.cs │ │ │ │ ├── GetGoodsLogisticsTemplate.cs │ │ │ │ ├── GetGoodsOpt.cs │ │ │ │ ├── GetGoodsOutPropertyMapping.cs │ │ │ │ ├── GetGoodsOuterCatMapping.cs │ │ │ │ ├── GetGoodsSizespecClass.cs │ │ │ │ ├── GetGoodsSizespecMeta.cs │ │ │ │ ├── GetGoodsSizespecTemplate.cs │ │ │ │ ├── GetGoodsSizespecTemplates.cs │ │ │ │ ├── GetGoodsSkus.cs │ │ │ │ ├── GetGoodsSpec.cs │ │ │ │ ├── GetGoodsSpecId.cs │ │ │ │ ├── GetGoodsSpu.cs │ │ │ │ ├── ListGoodsLogisticsSerTemplate.cs │ │ │ │ ├── ListGooodsSkuMeasurement.cs │ │ │ │ ├── PauseGoodsCpsMallUnit.cs │ │ │ │ ├── QueryGoodsCpsMallUnit.cs │ │ │ │ ├── QueryGoodsCpsUnit.cs │ │ │ │ ├── QueryGoodsMaterial.cs │ │ │ │ ├── RelationGoodsGet.cs │ │ │ │ ├── ResumeGoodsCpsMallUnit.cs │ │ │ │ ├── SearchGoodsSpu.cs │ │ │ │ ├── SearchGoodsTemplatePropertyValue.cs │ │ │ │ ├── SetGoodsRelation.cs │ │ │ │ ├── SetGoodsSaleStatus.cs │ │ │ │ ├── TemplateOneExpressCost.cs │ │ │ │ ├── UpdateGoodsInformation.cs │ │ │ │ ├── UpdateGoodsLogisticsSerTemplate.cs │ │ │ │ ├── UpdateGoodsQuantity.cs │ │ │ │ ├── UpdateGoodsSizespecTemplate.cs │ │ │ │ ├── UpdateGoodsSkuPrice.cs │ │ │ │ ├── UploadGoodsFilespaceImage.cs │ │ │ │ ├── UploadGoodsImage.cs │ │ │ │ ├── UploadGoodsImg.cs │ │ │ │ └── UploadGoodsVideo.cs │ │ │ ├── Invoice/ │ │ │ │ ├── InvalidInvoiceDetail.cs │ │ │ │ ├── QueryEinvoiceInfo.cs │ │ │ │ ├── QueryInvoiceApplication.cs │ │ │ │ └── UploadInvoiceDetail.cs │ │ │ ├── Ktt/ │ │ │ │ ├── CommissionKttHelpSellQuery.cs │ │ │ │ ├── CreateKttGroup.cs │ │ │ │ ├── CreateKttOrderLogistic.cs │ │ │ │ ├── CreateKttPurchaseGoods.cs │ │ │ │ ├── DeleteKttOrderLogistic.cs │ │ │ │ ├── DeliveryKttPurchaseOrder.cs │ │ │ │ ├── DeliveryKttPurchaseSampleOrder.cs │ │ │ │ ├── GetKttOrder.cs │ │ │ │ ├── GetKttOrderRefund.cs │ │ │ │ ├── ImageKttGoodsUpload.cs │ │ │ │ ├── ImageKttGroupUpload.cs │ │ │ │ ├── InfoKttPurchaseGoodsCat.cs │ │ │ │ ├── InfoKttPurchaseGoodsSupplierBrand.cs │ │ │ │ ├── InfoKttPurchaseOrder.cs │ │ │ │ ├── InfoKttPurchaseSampleOrder.cs │ │ │ │ ├── InfoKttPurchaseSupplierGoods.cs │ │ │ │ ├── ListKttAfterSalesIncrement.cs │ │ │ │ ├── ListKttGoodsQuery.cs │ │ │ │ ├── ListKttGroupQuery.cs │ │ │ │ ├── ListKttOrder.cs │ │ │ │ ├── ListKttPurchaseOrder.cs │ │ │ │ ├── ListKttPurchaseOrderAfterSales.cs │ │ │ │ ├── ListKttPurchaseSampleOrder.cs │ │ │ │ ├── PagequeryKttUserSite.cs │ │ │ │ ├── QuantityKttGoodsIncr.cs │ │ │ │ ├── QueryKttIncrementOrder.cs │ │ │ │ ├── ReplaceKttPurchaseOrderLogistic.cs │ │ │ │ ├── ReplaceKttPurchaseSampleOrderLogistic.cs │ │ │ │ ├── SingleKttGoodsQuery.cs │ │ │ │ ├── SpecKttGoodsCreate.cs │ │ │ │ ├── StatusKttGroupQuery.cs │ │ │ │ ├── SyncKttOrderVoucher.cs │ │ │ │ ├── UpdateKttPurchaseSupplierStorage.cs │ │ │ │ └── VerifyKttOrderVoucher.cs │ │ │ ├── Logistics/ │ │ │ │ ├── ApplyConsoWaybillIntercept.cs │ │ │ │ ├── CallbackConsoWaybillInterceptResult.cs │ │ │ │ ├── CallbackHeavygoodsBackExpress.cs │ │ │ │ ├── EnterConsoWarehousePackScan.cs │ │ │ │ ├── GetConsoDwsData.cs │ │ │ │ ├── GetLogisticsAddress.cs │ │ │ │ ├── GetLogisticsCompanies.cs │ │ │ │ ├── GetLogisticsOrdertrace.cs │ │ │ │ ├── GetLogisticsSpecialTag.cs │ │ │ │ ├── ProviderInfoSyncExpress.cs │ │ │ │ ├── PushLogisticsTscOrgSplitCfg.cs │ │ │ │ ├── RecommendLogisticsAvailableCompany.cs │ │ │ │ ├── SendLogisticsFulfillment.cs │ │ │ │ ├── SendLogisticsOnline.cs │ │ │ │ ├── SubLogisticsIsvTraceNotify.cs │ │ │ │ ├── SyncTailExpressTrace.cs │ │ │ │ └── UploadConsoImg.cs │ │ │ ├── LogisticsCompany/ │ │ │ │ ├── AuthServiceMailOrderFc.cs │ │ │ │ ├── CloseLogisticsCsSession.cs │ │ │ │ ├── GetLogisticsCsHistoryMessage.cs │ │ │ │ ├── GetLogisticsTicket.cs │ │ │ │ ├── GetLogisticsTicketProblemType.cs │ │ │ │ ├── InfoServiceMailCheckWeight.cs │ │ │ │ ├── NotifyLogisticsTicket.cs │ │ │ │ ├── NotifyServiceMailBizaction.cs │ │ │ │ ├── QueryServiceMailServiceTime.cs │ │ │ │ ├── SendLogisticsCsMessage.cs │ │ │ │ ├── StartLogisticsCsSession.cs │ │ │ │ ├── SubLogisticsCoTrack.cs │ │ │ │ └── UploadLogisticsTicketImage.cs │ │ │ ├── Mall/ │ │ │ │ ├── GetMallInfoGroupListStore.cs │ │ │ │ ├── GetMallInfoGroupRemoveStore.cs │ │ │ │ ├── GetMallInfoStore.cs │ │ │ │ ├── NopoiMallInfoStoreCreatePost.cs │ │ │ │ ├── NopoiMallInfoStoreUpdatePost.cs │ │ │ │ ├── PostMallInfoGroupAdd.cs │ │ │ │ ├── PostMallInfoGroupAddStore.cs │ │ │ │ ├── PostMallInfoGroupDelete.cs │ │ │ │ ├── PostMallInfoGroupQuery.cs │ │ │ │ ├── PostMallInfoGroupUpdate.cs │ │ │ │ ├── PostMallInfoStoreCreate.cs │ │ │ │ ├── PostMallInfoStoreDelete.cs │ │ │ │ ├── PostMallInfoStoreUpdate.cs │ │ │ │ └── RegisterQrpayPayee.cs │ │ │ ├── MallShop/ │ │ │ │ ├── BatchOpenDecrypt.cs │ │ │ │ ├── BatchOpenDecryptMask.cs │ │ │ │ ├── BatchOpenKmsEncrypt.cs │ │ │ │ ├── BatchOpenKmsSearch.cs │ │ │ │ ├── CheckMallNotificationTypeShow.cs │ │ │ │ ├── GetMallInfo.cs │ │ │ │ ├── InfoTraceSourceQueryGoods.cs │ │ │ │ ├── InfoTraceSourceUploadCode.cs │ │ │ │ ├── InfoTraceSourceUploadPlan.cs │ │ │ │ └── QueryMallCpsProtocolStatus.cs │ │ │ ├── OpenMsg/ │ │ │ │ ├── MsgOpenMsgServiceSend.cs │ │ │ │ ├── MsgOpenMsgServiceSendBatch.cs │ │ │ │ ├── MsgOpenMsgServiceSendExpress.cs │ │ │ │ └── RecordOpenMsgServiceQueryMsg.cs │ │ │ ├── Order/ │ │ │ │ ├── AddressOrderUpdate.cs │ │ │ │ ├── AgreeRefund.cs │ │ │ │ ├── AgreeRefundReturngoods.cs │ │ │ │ ├── CancelRdcPddgeniusSendgoods.cs │ │ │ │ ├── CheckRefundStatus.cs │ │ │ │ ├── GetFulfillmentInformation.cs │ │ │ │ ├── GetFulfillmentList.cs │ │ │ │ ├── GetFulfillmentListIncrement.cs │ │ │ │ ├── GetOrderBasicList.cs │ │ │ │ ├── GetOrderConsolidateOrderUserAddress.cs │ │ │ │ ├── GetOrderInformation.cs │ │ │ │ ├── GetOrderList.cs │ │ │ │ ├── GetOrderNumberListIncrement.cs │ │ │ │ ├── GetOrderPromiseInfo.cs │ │ │ │ ├── GetOrderPromotion.cs │ │ │ │ ├── GetOrderSpecificOrderInformation.cs │ │ │ │ ├── GetOrderStatus.cs │ │ │ │ ├── GetOrderVirtualInformation.cs │ │ │ │ ├── GetRefundAddressList.cs │ │ │ │ ├── GetRefundInformation.cs │ │ │ │ ├── GetRefundListIncrement.cs │ │ │ │ ├── GroupOrderMergeShipOrder.cs │ │ │ │ ├── InfoOrderTradein.cs │ │ │ │ ├── LogisticsOrderUploadExtra.cs │ │ │ │ ├── LogisticsOrderUploadRelation.cs │ │ │ │ ├── OrderOrderSearch.cs │ │ │ │ ├── ShippingRefundExchange.cs │ │ │ │ ├── SnOrderTradeinPost.cs │ │ │ │ ├── SyncErpOrder.cs │ │ │ │ ├── UpdateNextoneLogisticsWarehouse.cs │ │ │ │ ├── UpdateOrderNote.cs │ │ │ │ └── UpdateOrderServiceBenefit.cs │ │ │ ├── Oversea/ │ │ │ │ ├── GetMallInfoBondedWarehouse.cs │ │ │ │ ├── GetOverseaClearance.cs │ │ │ │ ├── NotifyOverseaDeclarationFail.cs │ │ │ │ ├── RecordCustomsSendGoods.cs │ │ │ │ └── SignOverseaCustomsClearanceGet.cs │ │ │ ├── Pmc/ │ │ │ │ ├── CancelPmcUser.cs │ │ │ │ ├── GetPmcUser.cs │ │ │ │ ├── PermitPmcUser.cs │ │ │ │ └── QueryPmcAccrue.cs │ │ │ ├── Promotion/ │ │ │ │ ├── AddPromotionCouponQuantity.cs │ │ │ │ ├── CancelPromotionLimitedActivity.cs │ │ │ │ ├── ClosePromotionCoupon.cs │ │ │ │ ├── CreatePromotionGoodsCoupon.cs │ │ │ │ ├── CreatePromotionHomeCoupon.cs │ │ │ │ ├── CreatePromotionLimitedActivity.cs │ │ │ │ ├── GetPromotionGoodsCouponList.cs │ │ │ │ ├── GetPromotionLimitedDiscountList.cs │ │ │ │ ├── GetPromotionLimitedQualifiedGoods.cs │ │ │ │ ├── GetPromotionLimitedQualifiedSku.cs │ │ │ │ └── GetPromotionMerchantCouponList.cs │ │ │ ├── Refund/ │ │ │ │ ├── AddressOrderUpdate.cs │ │ │ │ ├── AgreeRefund.cs │ │ │ │ ├── AgreeRefundReturngoods.cs │ │ │ │ ├── CancelRdcPddgeniusSendgoods.cs │ │ │ │ ├── CheckRefundStatus.cs │ │ │ │ ├── GetLogisticsAddress.cs │ │ │ │ ├── GetLogisticsCompanies.cs │ │ │ │ ├── GetLogisticsOrdertrace.cs │ │ │ │ ├── GetOrderBasicList.cs │ │ │ │ ├── GetOrderInformation.cs │ │ │ │ ├── GetOrderList.cs │ │ │ │ ├── GetOrderNumberListIncrement.cs │ │ │ │ ├── GetOrderPromiseInfo.cs │ │ │ │ ├── GetOrderPromotion.cs │ │ │ │ ├── GetOrderStatus.cs │ │ │ │ ├── GetOrderVirtualInformation.cs │ │ │ │ ├── GetRefundAddressList.cs │ │ │ │ ├── GetRefundInformation.cs │ │ │ │ ├── GetRefundListIncrement.cs │ │ │ │ ├── GroupOrderMergeShipOrder.cs │ │ │ │ ├── LogisticsOrderUploadExtra.cs │ │ │ │ ├── LogisticsOrderUploadRelation.cs │ │ │ │ ├── OrderOrderSearch.cs │ │ │ │ ├── RecommendLogisticsAvailableCompany.cs │ │ │ │ ├── SendLogisticsOnline.cs │ │ │ │ ├── ShippingRefundExchange.cs │ │ │ │ ├── SubLogisticsIsvTraceNotify.cs │ │ │ │ ├── SyncErpOrder.cs │ │ │ │ ├── UpdateNextoneLogisticsWarehouse.cs │ │ │ │ └── UpdateOrderNote.cs │ │ │ ├── ServiceMarket/ │ │ │ │ ├── GetServicemarketSettlementbill.cs │ │ │ │ ├── GetServicemarketTradelist.cs │ │ │ │ ├── SearchServicemarketContract.cs │ │ │ │ └── SearchVasOrder.cs │ │ │ ├── SmsVendor/ │ │ │ │ ├── CreateSmsVendorComplaint.cs │ │ │ │ └── PushSmsDetailbill.cs │ │ │ ├── Stock/ │ │ │ │ ├── CreateStockWare.cs │ │ │ │ ├── DeleteStockWare.cs │ │ │ │ ├── DepotExpressAdd.cs │ │ │ │ ├── DepotExpressSearch.cs │ │ │ │ ├── GetExpressDepotInfo.cs │ │ │ │ ├── GetExpressDepotList.cs │ │ │ │ ├── GetExpressMallDepotSimple.cs │ │ │ │ ├── InfoExpressChangeDepot.cs │ │ │ │ ├── ListStockDepotPriority.cs │ │ │ │ ├── ListStockWare.cs │ │ │ │ ├── ListStockWareInfo.cs │ │ │ │ ├── MoveStockWare.cs │ │ │ │ ├── QueryStockGoodsIdToSku.cs │ │ │ │ ├── QueryStockWareDetail.cs │ │ │ │ ├── QueryStockWareWarehouse.cs │ │ │ │ ├── UpdateStockDepotPriority.cs │ │ │ │ ├── UpdateStockWare.cs │ │ │ │ └── UpdateStockWareSku.cs │ │ │ ├── Ticket/ │ │ │ │ ├── AddTicketSkuRule.cs │ │ │ │ ├── EditTicketSkuRule.cs │ │ │ │ ├── GetTicketAreacode.cs │ │ │ │ ├── GetTicketScenic.cs │ │ │ │ ├── GetTicketSkuRule.cs │ │ │ │ ├── NotifycationTicketOrderCreate.cs │ │ │ │ ├── NotifycationTicketOrderRefund.cs │ │ │ │ ├── NotifycationTicketVerification.cs │ │ │ │ ├── QueryTicketGoods.cs │ │ │ │ └── UploadTicketGoods.cs │ │ │ ├── Util/ │ │ │ │ ├── BatchOpenDecrypt.cs │ │ │ │ ├── BatchOpenDecryptMask.cs │ │ │ │ ├── BatchOpenKmsEncrypt.cs │ │ │ │ ├── BatchOpenKmsSearch.cs │ │ │ │ ├── CheckOpenVirtualNumber.cs │ │ │ │ ├── CreatePopAuthToken.cs │ │ │ │ ├── GetPopMallBindTicket.cs │ │ │ │ ├── GetPopMallBindToken.cs │ │ │ │ ├── GetTime.cs │ │ │ │ ├── RefreshPopAuthToken.cs │ │ │ │ └── ReportPopMallBindRelation.cs │ │ │ ├── Virtual/ │ │ │ │ ├── NotifyVirtualMobileCharge.cs │ │ │ │ └── QueryVirtualGameServer.cs │ │ │ ├── Voucher/ │ │ │ │ ├── AddVoucherVirtualCardBatch.cs │ │ │ │ ├── ComplainVoucherVoucher.cs │ │ │ │ ├── GetVoucherRealtimeOrderno.cs │ │ │ │ ├── SendVoucherAppointmentInfo.cs │ │ │ │ ├── SendVoucherPhysicalGoods.cs │ │ │ │ ├── SendVoucherVoucherInfo.cs │ │ │ │ ├── SyncVoucherRealtimeVerify.cs │ │ │ │ ├── VerificationVoucherOtaCard.cs │ │ │ │ ├── VerificationVoucherOtaCardPrepare.cs │ │ │ │ └── VerificationVoucherVirtualCard.cs │ │ │ └── WayBill/ │ │ │ ├── BindCloudPrinter.cs │ │ │ ├── CancelWaybill.cs │ │ │ ├── CodeCloudPrintVerify.cs │ │ │ ├── GetCloudprintCustomares.cs │ │ │ ├── GetCloudprintPortableprinter.cs │ │ │ ├── GetCloudprintStdtemplates.cs │ │ │ ├── GetWaybill.cs │ │ │ ├── PrintCloud.cs │ │ │ ├── QueryCloudPrintTask.cs │ │ │ ├── QueryCloudPrinterStatus.cs │ │ │ ├── RenderCloudprintCmdprint.cs │ │ │ ├── SearchWaybill.cs │ │ │ ├── SettingCloudPrinter.cs │ │ │ ├── UpdateWaybill.cs │ │ │ └── WaybillcodeWaybillQueryBy.cs │ │ ├── Response/ │ │ │ ├── Ad/ │ │ │ │ ├── AccountAdApiAdvertiserOpenResponse.cs │ │ │ │ ├── BalanceAdApiAdvertiserQueryAccountResponse.cs │ │ │ │ ├── BidAdApiUnitTrUpdateOptimizationResponse.cs │ │ │ │ ├── BidAdApiUnitUpdateUnitResponse.cs │ │ │ │ ├── ContentAdApiUnitCreativeUpdateResponse.cs │ │ │ │ ├── CostAdApiPlanQueryCanUpdateMaxResponse.cs │ │ │ │ ├── CostAdApiPlanUpdateMaxResponse.cs │ │ │ │ ├── CostAdApiUnitTrUpdateMaxResponse.cs │ │ │ │ ├── CreateAdApiKeywordResponse.cs │ │ │ │ ├── CreateAdApiPlanResponse.cs │ │ │ │ ├── CreateAdApiUnitCreativeResponse.cs │ │ │ │ ├── CreateAdApiUnitResponse.cs │ │ │ │ ├── CreateAdApiUnitTrResponse.cs │ │ │ │ ├── CreativeAdApiUnitCreativeUpdateSmartResponse.cs │ │ │ │ ├── DeleteAdApiKeywordResponse.cs │ │ │ │ ├── DeleteAdApiPlanResponse.cs │ │ │ │ ├── DeleteAdApiUnitBidResponse.cs │ │ │ │ ├── DeleteAdApiUnitCreativeResponse.cs │ │ │ │ ├── DeleteAdApiUnitResponse.cs │ │ │ │ ├── DeleteAdApiUnitTrResponse.cs │ │ │ │ ├── DetailAdApiAdvertiserQueryResponse.cs │ │ │ │ ├── DiscountAdApiPlanUpdatePlanResponse.cs │ │ │ │ ├── GetAdApiKeywordRecommendResponse.cs │ │ │ │ ├── GetAdApiKeywordRelevanceResponse.cs │ │ │ │ ├── ImagesAdApiGoodsQueryGalleryResponse.cs │ │ │ │ ├── ImagesAdApiGoodsQueryLongResponse.cs │ │ │ │ ├── InfoAdApiAdvertiserQueryAccountResponse.cs │ │ │ │ ├── InfoAdApiUnitTrListAdResponse.cs │ │ │ │ ├── ListAdApiKeywordQueryResponse.cs │ │ │ │ ├── ListAdApiPlanQueryResponse.cs │ │ │ │ ├── ListAdApiUnitBidQueryResponse.cs │ │ │ │ ├── ListAdApiUnitBidQueryTargetingTagResponse.cs │ │ │ │ ├── ListAdApiUnitCreativeQueryResponse.cs │ │ │ │ ├── ListAdApiUnitQueryResponse.cs │ │ │ │ ├── MessageAdApiUnitUpdateOptimizationResponse.cs │ │ │ │ ├── NameAdApiPlanUpdatePlanResponse.cs │ │ │ │ ├── NameAdApiUnitTrUpdateAdResponse.cs │ │ │ │ ├── NameAdApiUnitUpdateUnitResponse.cs │ │ │ │ ├── OcpcAdApiPlanUpdatePlanToResponse.cs │ │ │ │ ├── PageAdApiGoodsQueryResponse.cs │ │ │ │ ├── PlanAdApiPlanQueryCanCreateAdResponse.cs │ │ │ │ ├── PrivilegeAdApiUnitTrListGoodsBidResponse.cs │ │ │ │ ├── ProfileAdApiUnitBidQueryBaseLocationResponse.cs │ │ │ │ ├── ProfileAdApiUnitBidQueryBaseTargetResponse.cs │ │ │ │ ├── QueryAdApiReportActivityReportResponse.cs │ │ │ │ ├── QueryAdApiReportDailyReportResponse.cs │ │ │ │ ├── QueryAdApiReportEntityReportResponse.cs │ │ │ │ ├── QueryAdApiReportHourlyReportResponse.cs │ │ │ │ ├── QueryAdApiReportTrDailyReportResponse.cs │ │ │ │ ├── QueryAdApiReportTrHourlyReportResponse.cs │ │ │ │ ├── RateAdApiUnitCreativeDistributeFlowResponse.cs │ │ │ │ ├── RateAdApiUnitCreativeQueryFlowResponse.cs │ │ │ │ ├── RoiAdApiUnitTrUpdateTargetResponse.cs │ │ │ │ ├── StatusAdApiPlanUpdateDataOperateResponse.cs │ │ │ │ ├── StatusAdApiUnitCreativeUpdateDataOperateResponse.cs │ │ │ │ ├── StatusAdApiUnitTrUpdateDataOperateResponse.cs │ │ │ │ ├── StatusAdApiUnitUpdateDataOperateResponse.cs │ │ │ │ ├── SuggestAdApiUnitTrListGoodsBidResponse.cs │ │ │ │ ├── SyncAdApiUnitBidResponse.cs │ │ │ │ ├── TitleAdApiUnitCreativeCheckResponse.cs │ │ │ │ ├── UpdateAdApiKeywordResponse.cs │ │ │ │ └── UpdateAdApiUnitBidResponse.cs │ │ │ ├── Ddk/ │ │ │ │ ├── AuthDdkGoodsPromotionRightResponse.cs │ │ │ │ ├── BindDdkPidMediaidResponse.cs │ │ │ │ ├── CompleteDdkReportVideoUploadPartResponse.cs │ │ │ │ ├── CreateDdkCashgiftResponse.cs │ │ │ │ ├── DetailDdkGoodsResponse.cs │ │ │ │ ├── GenDdkGoodsZsUnitUrlResponse.cs │ │ │ │ ├── GenDdkResourceUrlResponse.cs │ │ │ │ ├── GenDdkWeappQrcodeUrlResponse.cs │ │ │ │ ├── GenerateDdkCmsPromUrlResponse.cs │ │ │ │ ├── GenerateDdkGoodsPidResponse.cs │ │ │ │ ├── GenerateDdkGoodsPromotionUrlResponse.cs │ │ │ │ ├── GenerateDdkRpPromUrlResponse.cs │ │ │ │ ├── GetDdkGoodsRecommendResponse.cs │ │ │ │ ├── GetDdkOrderDetailResponse.cs │ │ │ │ ├── GetDdkOrderListIncrementResponse.cs │ │ │ │ ├── GetDdkOrderListRangeResponse.cs │ │ │ │ ├── InitDdkReportVideoUploadPartResponse.cs │ │ │ │ ├── ListDdkTmcActivityResponse.cs │ │ │ │ ├── ParseDdkUrlShortResponse.cs │ │ │ │ ├── PartDdkReportVideoUploadResponse.cs │ │ │ │ ├── QueryDdkCashgiftDataResponse.cs │ │ │ │ ├── QueryDdkGoodsPidResponse.cs │ │ │ │ ├── QueryDdkMemberAuthorityResponse.cs │ │ │ │ ├── QueryDdkPromotionGoodsResponse.cs │ │ │ │ ├── QueryDdkStatisticsDataResponse.cs │ │ │ │ ├── SearchDdkGoodsResponse.cs │ │ │ │ ├── UpdateDdkCashgiftStatusResponse.cs │ │ │ │ ├── UploadDdkReportImgResponse.cs │ │ │ │ └── UploadDdkReportVideoResponse.cs │ │ │ ├── DdkTools/ │ │ │ │ ├── BindDdkOauthPidMediaidResponse.cs │ │ │ │ ├── CreateDdkOauthCashgiftResponse.cs │ │ │ │ ├── DetailDdkOauthGoodsResponse.cs │ │ │ │ ├── GenDdkOauthGoodsZsUnitUrlResponse.cs │ │ │ │ ├── GenDdkOauthResourceUrlResponse.cs │ │ │ │ ├── GenDdkOauthWeappQrcodeUrlResponse.cs │ │ │ │ ├── GenerateDdkOauthCmsPromUrlResponse.cs │ │ │ │ ├── GenerateDdkOauthGoodsPidResponse.cs │ │ │ │ ├── GenerateDdkOauthGoodsPromUrlResponse.cs │ │ │ │ ├── GenerateDdkOauthRpPromUrlResponse.cs │ │ │ │ ├── GetDdkAllOrderListIncrementResponse.cs │ │ │ │ ├── GetDdkOauthGoodsRecommendResponse.cs │ │ │ │ ├── GetDdkOauthOrderDetailResponse.cs │ │ │ │ ├── GetDdkOauthOrderListIncrementResponse.cs │ │ │ │ ├── QueryDdkOauthGoodsPidResponse.cs │ │ │ │ ├── QueryDdkOauthMemberAuthorityResponse.cs │ │ │ │ ├── SearchDdkOauthGoodsResponse.cs │ │ │ │ └── UpdateDdkOauthCashgiftStatusResponse.cs │ │ │ ├── Fds/ │ │ │ │ ├── CancelFdsWaybillResponse.cs │ │ │ │ ├── GetFdsOrderListResponse.cs │ │ │ │ ├── GetFdsOrderResponse.cs │ │ │ │ ├── GetFdsRoleResponse.cs │ │ │ │ ├── GetFdsWaybillResponse.cs │ │ │ │ ├── ReturnFdsWaybillResponse.cs │ │ │ │ └── SlaveFdsWaybillReturnResponse.cs │ │ │ ├── Finance/ │ │ │ │ └── GetFinanceBalanceDailyBillUrlResponse.cs │ │ │ ├── Goods/ │ │ │ │ ├── AddGoodsResponse.cs │ │ │ │ ├── AddGoodsSizespecTemplateResponse.cs │ │ │ │ ├── CatsGoodsAuthorizationResponse.cs │ │ │ │ ├── ChangeGoodsCpsMallUnitResponse.cs │ │ │ │ ├── ChangeGoodsCpsUnitResponse.cs │ │ │ │ ├── CheckGoodsPriceResponse.cs │ │ │ │ ├── CodeSelectGoodsLabelResponse.cs │ │ │ │ ├── CommitDeleteDraftResponse.cs │ │ │ │ ├── CommitDeleteGoodsResponse.cs │ │ │ │ ├── CommitGoodsEditGoodsResponse.cs │ │ │ │ ├── CommitGoodsSubmitGoodsResponse.cs │ │ │ │ ├── CreateGoodsCpsMallUnitResponse.cs │ │ │ │ ├── CreateGoodsCpsUnitResponse.cs │ │ │ │ ├── CreateGoodsLogisticsSerTemplateResponse.cs │ │ │ │ ├── CreateGoodsLogisticsTemplateResponse.cs │ │ │ │ ├── CreateGoodsMaterialResponse.cs │ │ │ │ ├── DeleteGoodsCpsUnitResponse.cs │ │ │ │ ├── DeleteGoodsLogisticsSerTemplateResponse.cs │ │ │ │ ├── DeleteGoodsMaterialResponse.cs │ │ │ │ ├── DeleteGoodsSizespecTemplateResponse.cs │ │ │ │ ├── DetailGoodsLogisticsSerTemplateResponse.cs │ │ │ │ ├── EditGoodsChildSkuResponse.cs │ │ │ │ ├── GetGoodsAdvicePriceResponse.cs │ │ │ │ ├── GetGoodsCatRuleResponse.cs │ │ │ │ ├── GetGoodsCatTemplateResponse.cs │ │ │ │ ├── GetGoodsCatsResponse.cs │ │ │ │ ├── GetGoodsCommitDetailResponse.cs │ │ │ │ ├── GetGoodsCommitListResponse.cs │ │ │ │ ├── GetGoodsCommitStatusResponse.cs │ │ │ │ ├── GetGoodsCountryResponse.cs │ │ │ │ ├── GetGoodsDetailResponse.cs │ │ │ │ ├── GetGoodsFileInfoResponse.cs │ │ │ │ ├── GetGoodsInformationResponse.cs │ │ │ │ ├── GetGoodsLatestCommitStatusResponse.cs │ │ │ │ ├── GetGoodsListResponse.cs │ │ │ │ ├── GetGoodsLogisticsTemplateResponse.cs │ │ │ │ ├── GetGoodsOptResponse.cs │ │ │ │ ├── GetGoodsOutPropertyMappingResponse.cs │ │ │ │ ├── GetGoodsOuterCatMappingResponse.cs │ │ │ │ ├── GetGoodsSizespecClassResponse.cs │ │ │ │ ├── GetGoodsSizespecMetaResponse.cs │ │ │ │ ├── GetGoodsSizespecTemplateResponse.cs │ │ │ │ ├── GetGoodsSizespecTemplatesResponse.cs │ │ │ │ ├── GetGoodsSkusResponse.cs │ │ │ │ ├── GetGoodsSpecIdResponse.cs │ │ │ │ ├── GetGoodsSpecResponse.cs │ │ │ │ ├── GetGoodsSpuResponse.cs │ │ │ │ ├── ListGoodsLogisticsSerTemplateResponse.cs │ │ │ │ ├── ListGooodsSkuMeasurementResponse.cs │ │ │ │ ├── PauseGoodsCpsMallUnitResponse.cs │ │ │ │ ├── QueryGoodsCpsMallUnitResponse.cs │ │ │ │ ├── QueryGoodsCpsUnitResponse.cs │ │ │ │ ├── QueryGoodsMaterialResponse.cs │ │ │ │ ├── RelationGoodsGetResponse.cs │ │ │ │ ├── ResumeGoodsCpsMallUnitResponse.cs │ │ │ │ ├── SearchGoodsSpuResponse.cs │ │ │ │ ├── SearchGoodsTemplatePropertyValueResponse.cs │ │ │ │ ├── SetGoodsRelationResponse.cs │ │ │ │ ├── SetGoodsSaleStatusResponse.cs │ │ │ │ ├── TemplateOneExpressCostResponse.cs │ │ │ │ ├── UpdateGoodsInformationResponse.cs │ │ │ │ ├── UpdateGoodsLogisticsSerTemplateResponse.cs │ │ │ │ ├── UpdateGoodsQuantityResponse.cs │ │ │ │ ├── UpdateGoodsSizespecTemplateResponse.cs │ │ │ │ ├── UpdateGoodsSkuPriceResponse.cs │ │ │ │ ├── UploadGoodsFilespaceImageResponse.cs │ │ │ │ ├── UploadGoodsImageResponse.cs │ │ │ │ ├── UploadGoodsImgResponse.cs │ │ │ │ └── UploadGoodsVideoResponse.cs │ │ │ ├── Invoice/ │ │ │ │ ├── InvalidInvoiceDetailResponse.cs │ │ │ │ ├── QueryEinvoiceInfoResponse.cs │ │ │ │ ├── QueryInvoiceApplicationResponse.cs │ │ │ │ └── UploadInvoiceDetailResponse.cs │ │ │ ├── Ktt/ │ │ │ │ ├── CommissionKttHelpSellQueryResponse.cs │ │ │ │ ├── CreateKttGroupResponse.cs │ │ │ │ ├── CreateKttOrderLogisticResponse.cs │ │ │ │ ├── CreateKttPurchaseGoodsResponse.cs │ │ │ │ ├── DeleteKttOrderLogisticResponse.cs │ │ │ │ ├── DeliveryKttPurchaseOrderResponse.cs │ │ │ │ ├── DeliveryKttPurchaseSampleOrderResponse.cs │ │ │ │ ├── GetKttOrderRefundResponse.cs │ │ │ │ ├── GetKttOrderResponse.cs │ │ │ │ ├── ImageKttGoodsUploadResponse.cs │ │ │ │ ├── ImageKttGroupUploadResponse.cs │ │ │ │ ├── InfoKttPurchaseGoodsCatResponse.cs │ │ │ │ ├── InfoKttPurchaseGoodsSupplierBrandResponse.cs │ │ │ │ ├── InfoKttPurchaseOrderResponse.cs │ │ │ │ ├── InfoKttPurchaseSampleOrderResponse.cs │ │ │ │ ├── InfoKttPurchaseSupplierGoodsResponse.cs │ │ │ │ ├── ListKttAfterSalesIncrementResponse.cs │ │ │ │ ├── ListKttGoodsQueryResponse.cs │ │ │ │ ├── ListKttGroupQueryResponse.cs │ │ │ │ ├── ListKttOrderResponse.cs │ │ │ │ ├── ListKttPurchaseOrderAfterSalesResponse.cs │ │ │ │ ├── ListKttPurchaseOrderResponse.cs │ │ │ │ ├── ListKttPurchaseSampleOrderResponse.cs │ │ │ │ ├── PagequeryKttUserSiteResponse.cs │ │ │ │ ├── QuantityKttGoodsIncrResponse.cs │ │ │ │ ├── QueryKttIncrementOrderResponse.cs │ │ │ │ ├── ReplaceKttPurchaseOrderLogisticResponse.cs │ │ │ │ ├── ReplaceKttPurchaseSampleOrderLogisticResponse.cs │ │ │ │ ├── SingleKttGoodsQueryResponse.cs │ │ │ │ ├── SpecKttGoodsCreateResponse.cs │ │ │ │ ├── StatusKttGroupQueryResponse.cs │ │ │ │ ├── SyncKttOrderVoucherResponse.cs │ │ │ │ ├── UpdateKttPurchaseSupplierStorageResponse.cs │ │ │ │ └── VerifyKttOrderVoucherResponse.cs │ │ │ ├── Logistics/ │ │ │ │ ├── ApplyConsoWaybillInterceptResponse.cs │ │ │ │ ├── CallbackConsoWaybillInterceptResultResponse.cs │ │ │ │ ├── CallbackHeavygoodsBackExpressResponse.cs │ │ │ │ ├── EnterConsoWarehousePackScanResponse.cs │ │ │ │ ├── GetConsoDwsDataResponse.cs │ │ │ │ ├── GetLogisticsAddressResponse.cs │ │ │ │ ├── GetLogisticsCompaniesResponse.cs │ │ │ │ ├── GetLogisticsOrdertraceResponse.cs │ │ │ │ ├── GetLogisticsSpecialTagResponse.cs │ │ │ │ ├── ProviderInfoSyncExpressResponse.cs │ │ │ │ ├── PushLogisticsTscOrgSplitCfgResponse.cs │ │ │ │ ├── RecommendLogisticsAvailableCompanyResponse.cs │ │ │ │ ├── SendLogisticsFulfillmentResponse.cs │ │ │ │ ├── SendLogisticsOnlineResponse.cs │ │ │ │ ├── SubLogisticsIsvTraceNotifyResponse.cs │ │ │ │ ├── SyncTailExpressTraceResponse.cs │ │ │ │ └── UploadConsoImgResponse.cs │ │ │ ├── LogisticsCompany/ │ │ │ │ ├── AuthServiceMailOrderFcResponse.cs │ │ │ │ ├── CloseLogisticsCsSessionResponse.cs │ │ │ │ ├── GetLogisticsCsHistoryMessageResponse.cs │ │ │ │ ├── GetLogisticsTicketProblemTypeResponse.cs │ │ │ │ ├── GetLogisticsTicketResponse.cs │ │ │ │ ├── InfoServiceMailCheckWeightResponse.cs │ │ │ │ ├── NotifyLogisticsTicketResponse.cs │ │ │ │ ├── NotifyServiceMailBizactionResponse.cs │ │ │ │ ├── QueryServiceMailServiceTimeResponse.cs │ │ │ │ ├── SendLogisticsCsMessageResponse.cs │ │ │ │ ├── StartLogisticsCsSessionResponse.cs │ │ │ │ ├── SubLogisticsCoTrackResponse.cs │ │ │ │ └── UploadLogisticsTicketImageResponse.cs │ │ │ ├── Mall/ │ │ │ │ ├── GetMallInfoGroupListStoreResponse.cs │ │ │ │ ├── GetMallInfoGroupRemoveStoreResponse.cs │ │ │ │ ├── GetMallInfoStoreResponse.cs │ │ │ │ ├── NopoiMallInfoStoreCreatePostResponse.cs │ │ │ │ ├── NopoiMallInfoStoreUpdatePostResponse.cs │ │ │ │ ├── PostMallInfoGroupAddResponse.cs │ │ │ │ ├── PostMallInfoGroupAddStoreResponse.cs │ │ │ │ ├── PostMallInfoGroupDeleteResponse.cs │ │ │ │ ├── PostMallInfoGroupQueryResponse.cs │ │ │ │ ├── PostMallInfoGroupUpdateResponse.cs │ │ │ │ ├── PostMallInfoStoreCreateResponse.cs │ │ │ │ ├── PostMallInfoStoreDeleteResponse.cs │ │ │ │ ├── PostMallInfoStoreUpdateResponse.cs │ │ │ │ └── RegisterQrpayPayeeResponse.cs │ │ │ ├── MallShop/ │ │ │ │ ├── BatchOpenDecryptMaskResponse.cs │ │ │ │ ├── BatchOpenDecryptResponse.cs │ │ │ │ ├── BatchOpenKmsEncryptResponse.cs │ │ │ │ ├── BatchOpenKmsSearchResponse.cs │ │ │ │ ├── CheckMallNotificationTypeShowResponse.cs │ │ │ │ ├── GetMallInfoResponse.cs │ │ │ │ ├── InfoTraceSourceQueryGoodsResponse.cs │ │ │ │ ├── InfoTraceSourceUploadCodeResponse.cs │ │ │ │ ├── InfoTraceSourceUploadPlanResponse.cs │ │ │ │ └── QueryMallCpsProtocolStatusResponse.cs │ │ │ ├── OpenMsg/ │ │ │ │ ├── MsgOpenMsgServiceSendBatchResponse.cs │ │ │ │ ├── MsgOpenMsgServiceSendExpressResponse.cs │ │ │ │ ├── MsgOpenMsgServiceSendResponse.cs │ │ │ │ └── RecordOpenMsgServiceQueryMsgResponse.cs │ │ │ ├── Order/ │ │ │ │ ├── AddressOrderUpdateResponse.cs │ │ │ │ ├── AgreeRefundResponse.cs │ │ │ │ ├── AgreeRefundReturngoodsResponse.cs │ │ │ │ ├── CancelRdcPddgeniusSendgoodsResponse.cs │ │ │ │ ├── CheckRefundStatusResponse.cs │ │ │ │ ├── GetFulfillmentInformationResponse.cs │ │ │ │ ├── GetFulfillmentListIncrementResponse.cs │ │ │ │ ├── GetFulfillmentListResponse.cs │ │ │ │ ├── GetOrderBasicListResponse.cs │ │ │ │ ├── GetOrderConsolidateOrderUserAddressResponse.cs │ │ │ │ ├── GetOrderInformationResponse.cs │ │ │ │ ├── GetOrderListResponse.cs │ │ │ │ ├── GetOrderNumberListIncrementResponse.cs │ │ │ │ ├── GetOrderPromiseInfoResponse.cs │ │ │ │ ├── GetOrderPromotionResponse.cs │ │ │ │ ├── GetOrderSpecificOrderInformationResponse.cs │ │ │ │ ├── GetOrderStatusResponse.cs │ │ │ │ ├── GetOrderVirtualInformationResponse.cs │ │ │ │ ├── GetRefundAddressListResponse.cs │ │ │ │ ├── GetRefundInformationResponse.cs │ │ │ │ ├── GetRefundListIncrementResponse.cs │ │ │ │ ├── GroupOrderMergeShipOrderResponse.cs │ │ │ │ ├── InfoOrderTradeinResponse.cs │ │ │ │ ├── LogisticsOrderUploadExtraResponse.cs │ │ │ │ ├── LogisticsOrderUploadRelationResponse.cs │ │ │ │ ├── OrderOrderSearchResponse.cs │ │ │ │ ├── ShippingRefundExchangeResponse.cs │ │ │ │ ├── SnOrderTradeinPostResponse.cs │ │ │ │ ├── SyncErpOrderResponse.cs │ │ │ │ ├── UpdateNextoneLogisticsWarehouseResponse.cs │ │ │ │ ├── UpdateOrderNoteResponse.cs │ │ │ │ └── UpdateOrderServiceBenefitResponse.cs │ │ │ ├── Oversea/ │ │ │ │ ├── GetMallInfoBondedWarehouseResponse.cs │ │ │ │ ├── GetOverseaClearanceResponse.cs │ │ │ │ ├── NotifyOverseaDeclarationFailResponse.cs │ │ │ │ ├── RecordCustomsSendGoodsResponse.cs │ │ │ │ └── SignOverseaCustomsClearanceGetResponse.cs │ │ │ ├── Pmc/ │ │ │ │ ├── CancelPmcUserResponse.cs │ │ │ │ ├── GetPmcUserResponse.cs │ │ │ │ ├── PermitPmcUserResponse.cs │ │ │ │ └── QueryPmcAccrueResponse.cs │ │ │ ├── Promotion/ │ │ │ │ ├── AddPromotionCouponQuantityResponse.cs │ │ │ │ ├── CancelPromotionLimitedActivityResponse.cs │ │ │ │ ├── ClosePromotionCouponResponse.cs │ │ │ │ ├── CreatePromotionGoodsCouponResponse.cs │ │ │ │ ├── CreatePromotionHomeCouponResponse.cs │ │ │ │ ├── CreatePromotionLimitedActivityResponse.cs │ │ │ │ ├── GetPromotionGoodsCouponListResponse.cs │ │ │ │ ├── GetPromotionLimitedDiscountListResponse.cs │ │ │ │ ├── GetPromotionLimitedQualifiedGoodsResponse.cs │ │ │ │ ├── GetPromotionLimitedQualifiedSkuResponse.cs │ │ │ │ └── GetPromotionMerchantCouponListResponse.cs │ │ │ ├── Refund/ │ │ │ │ ├── AddressOrderUpdateResponse.cs │ │ │ │ ├── AgreeRefundResponse.cs │ │ │ │ ├── AgreeRefundReturngoodsResponse.cs │ │ │ │ ├── CancelRdcPddgeniusSendgoodsResponse.cs │ │ │ │ ├── CheckRefundStatusResponse.cs │ │ │ │ ├── GetLogisticsAddressResponse.cs │ │ │ │ ├── GetLogisticsCompaniesResponse.cs │ │ │ │ ├── GetLogisticsOrdertraceResponse.cs │ │ │ │ ├── GetOrderBasicListResponse.cs │ │ │ │ ├── GetOrderInformationResponse.cs │ │ │ │ ├── GetOrderListResponse.cs │ │ │ │ ├── GetOrderNumberListIncrementResponse.cs │ │ │ │ ├── GetOrderPromiseInfoResponse.cs │ │ │ │ ├── GetOrderPromotionResponse.cs │ │ │ │ ├── GetOrderStatusResponse.cs │ │ │ │ ├── GetOrderVirtualInformationResponse.cs │ │ │ │ ├── GetRefundAddressListResponse.cs │ │ │ │ ├── GetRefundInformationResponse.cs │ │ │ │ ├── GetRefundListIncrementResponse.cs │ │ │ │ ├── GroupOrderMergeShipOrderResponse.cs │ │ │ │ ├── LogisticsOrderUploadExtraResponse.cs │ │ │ │ ├── LogisticsOrderUploadRelationResponse.cs │ │ │ │ ├── OrderOrderSearchResponse.cs │ │ │ │ ├── RecommendLogisticsAvailableCompanyResponse.cs │ │ │ │ ├── SendLogisticsOnlineResponse.cs │ │ │ │ ├── ShippingRefundExchangeResponse.cs │ │ │ │ ├── SubLogisticsIsvTraceNotifyResponse.cs │ │ │ │ ├── SyncErpOrderResponse.cs │ │ │ │ ├── UpdateNextoneLogisticsWarehouseResponse.cs │ │ │ │ └── UpdateOrderNoteResponse.cs │ │ │ ├── ServiceMarket/ │ │ │ │ ├── GetServicemarketSettlementbillResponse.cs │ │ │ │ ├── GetServicemarketTradelistResponse.cs │ │ │ │ ├── SearchServicemarketContractResponse.cs │ │ │ │ └── SearchVasOrderResponse.cs │ │ │ ├── SmsVendor/ │ │ │ │ ├── CreateSmsVendorComplaintResponse.cs │ │ │ │ └── PushSmsDetailbillResponse.cs │ │ │ ├── Stock/ │ │ │ │ ├── CreateStockWareResponse.cs │ │ │ │ ├── DeleteStockWareResponse.cs │ │ │ │ ├── DepotExpressAddResponse.cs │ │ │ │ ├── DepotExpressSearchResponse.cs │ │ │ │ ├── GetExpressDepotInfoResponse.cs │ │ │ │ ├── GetExpressDepotListResponse.cs │ │ │ │ ├── GetExpressMallDepotSimpleResponse.cs │ │ │ │ ├── InfoExpressChangeDepotResponse.cs │ │ │ │ ├── ListStockDepotPriorityResponse.cs │ │ │ │ ├── ListStockWareInfoResponse.cs │ │ │ │ ├── ListStockWareResponse.cs │ │ │ │ ├── MoveStockWareResponse.cs │ │ │ │ ├── QueryStockGoodsIdToSkuResponse.cs │ │ │ │ ├── QueryStockWareDetailResponse.cs │ │ │ │ ├── QueryStockWareWarehouseResponse.cs │ │ │ │ ├── UpdateStockDepotPriorityResponse.cs │ │ │ │ ├── UpdateStockWareResponse.cs │ │ │ │ └── UpdateStockWareSkuResponse.cs │ │ │ ├── Ticket/ │ │ │ │ ├── AddTicketSkuRuleResponse.cs │ │ │ │ ├── EditTicketSkuRuleResponse.cs │ │ │ │ ├── GetTicketAreacodeResponse.cs │ │ │ │ ├── GetTicketScenicResponse.cs │ │ │ │ ├── GetTicketSkuRuleResponse.cs │ │ │ │ ├── NotifycationTicketOrderCreateResponse.cs │ │ │ │ ├── NotifycationTicketOrderRefundResponse.cs │ │ │ │ ├── NotifycationTicketVerificationResponse.cs │ │ │ │ ├── QueryTicketGoodsResponse.cs │ │ │ │ └── UploadTicketGoodsResponse.cs │ │ │ ├── Util/ │ │ │ │ ├── BatchOpenDecryptMaskResponse.cs │ │ │ │ ├── BatchOpenDecryptResponse.cs │ │ │ │ ├── BatchOpenKmsEncryptResponse.cs │ │ │ │ ├── BatchOpenKmsSearchResponse.cs │ │ │ │ ├── CheckOpenVirtualNumberResponse.cs │ │ │ │ ├── CreatePopAuthTokenResponse.cs │ │ │ │ ├── GetPopMallBindTicketResponse.cs │ │ │ │ ├── GetPopMallBindTokenResponse.cs │ │ │ │ ├── GetTimeResponse.cs │ │ │ │ ├── RefreshPopAuthTokenResponse.cs │ │ │ │ └── ReportPopMallBindRelationResponse.cs │ │ │ ├── Virtual/ │ │ │ │ ├── NotifyVirtualMobileChargeResponse.cs │ │ │ │ └── QueryVirtualGameServerResponse.cs │ │ │ ├── Voucher/ │ │ │ │ ├── AddVoucherVirtualCardBatchResponse.cs │ │ │ │ ├── ComplainVoucherVoucherResponse.cs │ │ │ │ ├── GetVoucherRealtimeOrdernoResponse.cs │ │ │ │ ├── SendVoucherAppointmentInfoResponse.cs │ │ │ │ ├── SendVoucherPhysicalGoodsResponse.cs │ │ │ │ ├── SendVoucherVoucherInfoResponse.cs │ │ │ │ ├── SyncVoucherRealtimeVerifyResponse.cs │ │ │ │ ├── VerificationVoucherOtaCardPrepareResponse.cs │ │ │ │ ├── VerificationVoucherOtaCardResponse.cs │ │ │ │ └── VerificationVoucherVirtualCardResponse.cs │ │ │ └── WayBill/ │ │ │ ├── BindCloudPrinterResponse.cs │ │ │ ├── CancelWaybillResponse.cs │ │ │ ├── CodeCloudPrintVerifyResponse.cs │ │ │ ├── GetCloudprintCustomaresResponse.cs │ │ │ ├── GetCloudprintPortableprinterResponse.cs │ │ │ ├── GetCloudprintStdtemplatesResponse.cs │ │ │ ├── GetWaybillResponse.cs │ │ │ ├── PrintCloudResponse.cs │ │ │ ├── QueryCloudPrintTaskResponse.cs │ │ │ ├── QueryCloudPrinterStatusResponse.cs │ │ │ ├── RenderCloudprintCmdprintResponse.cs │ │ │ ├── SearchWaybillResponse.cs │ │ │ ├── SettingCloudPrinterResponse.cs │ │ │ ├── UpdateWaybillResponse.cs │ │ │ └── WaybillcodeWaybillQueryByResponse.cs │ │ └── SocketMessageModel.cs │ ├── PddClient.cs │ ├── PddOpenSdk.csproj │ ├── README.MD │ └── Services/ │ ├── AuthApi.cs │ ├── PddApi/ │ │ ├── AdApi.cs │ │ ├── DdkApi.cs │ │ ├── DdkToolsApi.cs │ │ ├── FdsApi.cs │ │ ├── FinanceApi.cs │ │ ├── GoodsApi.cs │ │ ├── InvoiceApi.cs │ │ ├── KttApi.cs │ │ ├── LogisticsApi.cs │ │ ├── LogisticsCompanyApi.cs │ │ ├── MallApi.cs │ │ ├── MallShopApi.cs │ │ ├── OpenMsgApi.cs │ │ ├── OrderApi.cs │ │ ├── OverseaApi.cs │ │ ├── PmcApi.cs │ │ ├── PromotionApi.cs │ │ ├── RefundApi.cs │ │ ├── ServiceMarketApi.cs │ │ ├── SmsVendorApi.cs │ │ ├── StockApi.cs │ │ ├── TicketApi.cs │ │ ├── UtilApi.cs │ │ ├── VirtualApi.cs │ │ ├── VoucherApi.cs │ │ └── WayBillApi.cs │ └── PddCommonApi.cs └── Sample/ ├── Controllers/ │ └── AuthController.cs ├── GlobalUsing.cs ├── Models/ │ └── ErrorViewModel.cs ├── MyHostService.cs ├── Program.cs ├── Sample.csproj ├── Views/ │ ├── Auth/ │ │ ├── Contact.cshtml │ │ ├── Index.cshtml │ │ ├── Privacy.cshtml │ │ └── callback.cshtml │ ├── Shared/ │ │ ├── Error.cshtml │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── error.json └── output.json