@@ -130,6 +130,24 @@ public CompletableFuture<AsyncEditTimelineResponse> asyncEditTimeline(AsyncEditT
130130 }
131131 }
132132
133+ /**
134+ * @param request the request parameters of AsyncUploadTenderDoc AsyncUploadTenderDocRequest
135+ * @return AsyncUploadTenderDocResponse
136+ */
137+ @ Override
138+ public CompletableFuture <AsyncUploadTenderDocResponse > asyncUploadTenderDoc (AsyncUploadTenderDocRequest request ) {
139+ try {
140+ this .handler .validateRequestModel (request );
141+ TeaRequest teaRequest = REQUEST .copy ().setStyle (RequestStyle .RPC ).setAction ("AsyncUploadTenderDoc" ).setMethod (HttpMethod .POST ).setPathRegex ("/" ).setBodyType (BodyType .JSON ).setBodyIsForm (true ).setReqBodyType (BodyType .FORM ).formModel (request );
142+ ClientExecutionParams params = new ClientExecutionParams ().withInput (request ).withRequest (teaRequest ).withOutput (AsyncUploadTenderDocResponse .create ());
143+ return this .handler .execute (params );
144+ } catch (Exception e ) {
145+ CompletableFuture <AsyncUploadTenderDocResponse > future = new CompletableFuture <>();
146+ future .completeExceptionally (e );
147+ return future ;
148+ }
149+ }
150+
133151 /**
134152 * @param request the request parameters of AsyncUploadVideo AsyncUploadVideoRequest
135153 * @return AsyncUploadVideoResponse
@@ -148,6 +166,24 @@ public CompletableFuture<AsyncUploadVideoResponse> asyncUploadVideo(AsyncUploadV
148166 }
149167 }
150168
169+ /**
170+ * @param request the request parameters of AsyncWritingBiddingDoc AsyncWritingBiddingDocRequest
171+ * @return AsyncWritingBiddingDocResponse
172+ */
173+ @ Override
174+ public CompletableFuture <AsyncWritingBiddingDocResponse > asyncWritingBiddingDoc (AsyncWritingBiddingDocRequest request ) {
175+ try {
176+ this .handler .validateRequestModel (request );
177+ TeaRequest teaRequest = REQUEST .copy ().setStyle (RequestStyle .RPC ).setAction ("AsyncWritingBiddingDoc" ).setMethod (HttpMethod .POST ).setPathRegex ("/" ).setBodyType (BodyType .JSON ).setBodyIsForm (true ).setReqBodyType (BodyType .FORM ).formModel (request );
178+ ClientExecutionParams params = new ClientExecutionParams ().withInput (request ).withRequest (teaRequest ).withOutput (AsyncWritingBiddingDocResponse .create ());
179+ return this .handler .execute (params );
180+ } catch (Exception e ) {
181+ CompletableFuture <AsyncWritingBiddingDocResponse > future = new CompletableFuture <>();
182+ future .completeExceptionally (e );
183+ return future ;
184+ }
185+ }
186+
151187 /**
152188 * @param request the request parameters of CancelAsyncTask CancelAsyncTaskRequest
153189 * @return CancelAsyncTaskResponse
@@ -562,6 +598,24 @@ public CompletableFuture<DownloadAuditNoteResponse> downloadAuditNote(DownloadAu
562598 }
563599 }
564600
601+ /**
602+ * @param request the request parameters of DownloadBiddingDoc DownloadBiddingDocRequest
603+ * @return DownloadBiddingDocResponse
604+ */
605+ @ Override
606+ public CompletableFuture <DownloadBiddingDocResponse > downloadBiddingDoc (DownloadBiddingDocRequest request ) {
607+ try {
608+ this .handler .validateRequestModel (request );
609+ TeaRequest teaRequest = REQUEST .copy ().setStyle (RequestStyle .RPC ).setAction ("DownloadBiddingDoc" ).setMethod (HttpMethod .POST ).setPathRegex ("/" ).setBodyType (BodyType .JSON ).setBodyIsForm (true ).setReqBodyType (BodyType .FORM ).formModel (request );
610+ ClientExecutionParams params = new ClientExecutionParams ().withInput (request ).withRequest (teaRequest ).withOutput (DownloadBiddingDocResponse .create ());
611+ return this .handler .execute (params );
612+ } catch (Exception e ) {
613+ CompletableFuture <DownloadBiddingDocResponse > future = new CompletableFuture <>();
614+ future .completeExceptionally (e );
615+ return future ;
616+ }
617+ }
618+
565619 /**
566620 * @param request the request parameters of EditAuditTerms EditAuditTermsRequest
567621 * @return EditAuditTermsResponse
@@ -580,6 +634,24 @@ public CompletableFuture<EditAuditTermsResponse> editAuditTerms(EditAuditTermsRe
580634 }
581635 }
582636
637+ /**
638+ * @param request the request parameters of EditBiddingDoc EditBiddingDocRequest
639+ * @return EditBiddingDocResponse
640+ */
641+ @ Override
642+ public CompletableFuture <EditBiddingDocResponse > editBiddingDoc (EditBiddingDocRequest request ) {
643+ try {
644+ this .handler .validateRequestModel (request );
645+ TeaRequest teaRequest = REQUEST .copy ().setStyle (RequestStyle .RPC ).setAction ("EditBiddingDoc" ).setMethod (HttpMethod .POST ).setPathRegex ("/" ).setBodyType (BodyType .JSON ).setBodyIsForm (true ).setReqBodyType (BodyType .FORM ).formModel (request );
646+ ClientExecutionParams params = new ClientExecutionParams ().withInput (request ).withRequest (teaRequest ).withOutput (EditBiddingDocResponse .create ());
647+ return this .handler .execute (params );
648+ } catch (Exception e ) {
649+ CompletableFuture <EditBiddingDocResponse > future = new CompletableFuture <>();
650+ future .completeExceptionally (e );
651+ return future ;
652+ }
653+ }
654+
583655 /**
584656 * @param request the request parameters of ExportAnalysisTagDetailByTaskId ExportAnalysisTagDetailByTaskIdRequest
585657 * @return ExportAnalysisTagDetailByTaskIdResponse
@@ -940,6 +1012,42 @@ public CompletableFuture<GetAvailableAuditNotesResponse> getAvailableAuditNotes(
9401012 }
9411013 }
9421014
1015+ /**
1016+ * @param request the request parameters of GetBiddingDocInfo GetBiddingDocInfoRequest
1017+ * @return GetBiddingDocInfoResponse
1018+ */
1019+ @ Override
1020+ public CompletableFuture <GetBiddingDocInfoResponse > getBiddingDocInfo (GetBiddingDocInfoRequest request ) {
1021+ try {
1022+ this .handler .validateRequestModel (request );
1023+ TeaRequest teaRequest = REQUEST .copy ().setStyle (RequestStyle .RPC ).setAction ("GetBiddingDocInfo" ).setMethod (HttpMethod .POST ).setPathRegex ("/" ).setBodyType (BodyType .JSON ).setBodyIsForm (true ).setReqBodyType (BodyType .FORM ).formModel (request );
1024+ ClientExecutionParams params = new ClientExecutionParams ().withInput (request ).withRequest (teaRequest ).withOutput (GetBiddingDocInfoResponse .create ());
1025+ return this .handler .execute (params );
1026+ } catch (Exception e ) {
1027+ CompletableFuture <GetBiddingDocInfoResponse > future = new CompletableFuture <>();
1028+ future .completeExceptionally (e );
1029+ return future ;
1030+ }
1031+ }
1032+
1033+ /**
1034+ * @param request the request parameters of GetBiddingRemainLimitNum GetBiddingRemainLimitNumRequest
1035+ * @return GetBiddingRemainLimitNumResponse
1036+ */
1037+ @ Override
1038+ public CompletableFuture <GetBiddingRemainLimitNumResponse > getBiddingRemainLimitNum (GetBiddingRemainLimitNumRequest request ) {
1039+ try {
1040+ this .handler .validateRequestModel (request );
1041+ TeaRequest teaRequest = REQUEST .copy ().setStyle (RequestStyle .RPC ).setAction ("GetBiddingRemainLimitNum" ).setMethod (HttpMethod .POST ).setPathRegex ("/" ).setBodyType (BodyType .JSON ).setBodyIsForm (true ).setReqBodyType (BodyType .FORM ).formModel (request );
1042+ ClientExecutionParams params = new ClientExecutionParams ().withInput (request ).withRequest (teaRequest ).withOutput (GetBiddingRemainLimitNumResponse .create ());
1043+ return this .handler .execute (params );
1044+ } catch (Exception e ) {
1045+ CompletableFuture <GetBiddingRemainLimitNumResponse > future = new CompletableFuture <>();
1046+ future .completeExceptionally (e );
1047+ return future ;
1048+ }
1049+ }
1050+
9431051 /**
9441052 * @param request the request parameters of GetCategoriesByTaskId GetCategoriesByTaskIdRequest
9451053 * @return GetCategoriesByTaskIdResponse
@@ -1588,6 +1696,24 @@ public CompletableFuture<ListAuditTermsResponse> listAuditTerms(ListAuditTermsRe
15881696 }
15891697 }
15901698
1699+ /**
1700+ * @param request the request parameters of ListBiddingDoc ListBiddingDocRequest
1701+ * @return ListBiddingDocResponse
1702+ */
1703+ @ Override
1704+ public CompletableFuture <ListBiddingDocResponse > listBiddingDoc (ListBiddingDocRequest request ) {
1705+ try {
1706+ this .handler .validateRequestModel (request );
1707+ TeaRequest teaRequest = REQUEST .copy ().setStyle (RequestStyle .RPC ).setAction ("ListBiddingDoc" ).setMethod (HttpMethod .POST ).setPathRegex ("/" ).setBodyType (BodyType .JSON ).setBodyIsForm (true ).setReqBodyType (BodyType .FORM ).formModel (request );
1708+ ClientExecutionParams params = new ClientExecutionParams ().withInput (request ).withRequest (teaRequest ).withOutput (ListBiddingDocResponse .create ());
1709+ return this .handler .execute (params );
1710+ } catch (Exception e ) {
1711+ CompletableFuture <ListBiddingDocResponse > future = new CompletableFuture <>();
1712+ future .completeExceptionally (e );
1713+ return future ;
1714+ }
1715+ }
1716+
15911717 /**
15921718 * @param request the request parameters of ListBuildConfigs ListBuildConfigsRequest
15931719 * @return ListBuildConfigsResponse
0 commit comments