tencentcloud-sdk-nodejs-essbasic 4.0.255 → 4.0.260
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1139 -86
- package/package.json +1 -1
- package/products.md +54 -54
- package/src/services/essbasic/v20210526/essbasic_client.ts +44 -4
- package/src/services/essbasic/v20210526/essbasic_models.ts +237 -85
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +23 -1
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +26 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +206 -77
|
@@ -91,6 +91,11 @@ export interface FlowApproverInfo {
|
|
|
91
91
|
* 用户侧第三方id
|
|
92
92
|
*/
|
|
93
93
|
OpenId?: string
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* 合同的强制预览时间:3~300s,未指定则按合同页数计算
|
|
97
|
+
*/
|
|
98
|
+
PreReadTime?: number
|
|
94
99
|
}
|
|
95
100
|
|
|
96
101
|
/**
|
|
@@ -158,6 +163,21 @@ export interface TemplateInfo {
|
|
|
158
163
|
Recipients: Array<Recipient>
|
|
159
164
|
}
|
|
160
165
|
|
|
166
|
+
/**
|
|
167
|
+
* GetDownloadFlowUrl返回参数结构体
|
|
168
|
+
*/
|
|
169
|
+
export interface GetDownloadFlowUrlResponse {
|
|
170
|
+
/**
|
|
171
|
+
* 进入合同(流程)下载确认页面链接
|
|
172
|
+
*/
|
|
173
|
+
DownLoadUrl: string
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
177
|
+
*/
|
|
178
|
+
RequestId?: string
|
|
179
|
+
}
|
|
180
|
+
|
|
161
181
|
/**
|
|
162
182
|
* DescribeResourceUrlsByFlows返回参数结构体
|
|
163
183
|
*/
|
|
@@ -179,6 +199,51 @@ export interface DescribeResourceUrlsByFlowsResponse {
|
|
|
179
199
|
RequestId?: string
|
|
180
200
|
}
|
|
181
201
|
|
|
202
|
+
/**
|
|
203
|
+
* 签署参与者信息
|
|
204
|
+
*/
|
|
205
|
+
export interface Recipient {
|
|
206
|
+
/**
|
|
207
|
+
* 签署人唯一标识
|
|
208
|
+
*/
|
|
209
|
+
RecipientId?: string
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* 签署方类型:ENTERPRISE-企业INDIVIDUAL-自然人
|
|
213
|
+
*/
|
|
214
|
+
RecipientType?: string
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* 描述
|
|
218
|
+
*/
|
|
219
|
+
Description?: string
|
|
220
|
+
|
|
221
|
+
/**
|
|
222
|
+
* 签署方备注信息
|
|
223
|
+
*/
|
|
224
|
+
RoleName?: string
|
|
225
|
+
|
|
226
|
+
/**
|
|
227
|
+
* 是否需要校验
|
|
228
|
+
*/
|
|
229
|
+
RequireValidation?: boolean
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* 是否必须填写
|
|
233
|
+
*/
|
|
234
|
+
RequireSign?: boolean
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* 签署类型
|
|
238
|
+
*/
|
|
239
|
+
SignType?: number
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* 签署顺序:数字越小优先级越高
|
|
243
|
+
*/
|
|
244
|
+
RoutingOrder?: number
|
|
245
|
+
}
|
|
246
|
+
|
|
182
247
|
/**
|
|
183
248
|
* DescribeTemplates返回参数结构体
|
|
184
249
|
*/
|
|
@@ -195,28 +260,49 @@ export interface DescribeTemplatesResponse {
|
|
|
195
260
|
}
|
|
196
261
|
|
|
197
262
|
/**
|
|
198
|
-
*
|
|
263
|
+
* OperateChannelTemplate返回参数结构体
|
|
199
264
|
*/
|
|
200
|
-
export interface
|
|
265
|
+
export interface OperateChannelTemplateResponse {
|
|
201
266
|
/**
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
267
|
+
* 腾讯电子签颁发给渠道的应用ID
|
|
268
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
269
|
+
*/
|
|
270
|
+
AppId: string
|
|
205
271
|
|
|
206
272
|
/**
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
273
|
+
* 渠道方模板库模板唯一标识
|
|
274
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
275
|
+
*/
|
|
276
|
+
TemplateId: string
|
|
210
277
|
|
|
211
278
|
/**
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
279
|
+
* 全部成功-"all-success",部分成功-"part-success", 全部失败-"fail"失败的会在FailMessageList中展示
|
|
280
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
281
|
+
*/
|
|
282
|
+
OperateResult: string
|
|
215
283
|
|
|
216
284
|
/**
|
|
217
|
-
|
|
285
|
+
* 模板可见性, 全部可见-"all", 部分可见-"part"
|
|
286
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
287
|
+
*/
|
|
288
|
+
AuthTag: string
|
|
289
|
+
|
|
290
|
+
/**
|
|
291
|
+
* 合作企业方第三方机构唯一标识数据
|
|
292
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
293
|
+
*/
|
|
294
|
+
ProxyOrganizationOpenIds: Array<string>
|
|
295
|
+
|
|
296
|
+
/**
|
|
297
|
+
* 操作失败信息数组
|
|
298
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
299
|
+
*/
|
|
300
|
+
FailMessageList: Array<AuthFailMessage>
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
218
304
|
*/
|
|
219
|
-
|
|
305
|
+
RequestId?: string
|
|
220
306
|
}
|
|
221
307
|
|
|
222
308
|
/**
|
|
@@ -249,6 +335,21 @@ export interface CreateSignUrlsRequest {
|
|
|
249
335
|
JumpUrl?: string
|
|
250
336
|
}
|
|
251
337
|
|
|
338
|
+
/**
|
|
339
|
+
* 授权出错信息
|
|
340
|
+
*/
|
|
341
|
+
export interface AuthFailMessage {
|
|
342
|
+
/**
|
|
343
|
+
* 合作企业Id
|
|
344
|
+
*/
|
|
345
|
+
ProxyOrganizationOpenId: string
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* 出错信息
|
|
349
|
+
*/
|
|
350
|
+
Message: string
|
|
351
|
+
}
|
|
352
|
+
|
|
252
353
|
/**
|
|
253
354
|
* DescribeResourceUrlsByFlows请求参数结构体
|
|
254
355
|
*/
|
|
@@ -383,6 +484,27 @@ TEXT控件可以指定字体
|
|
|
383
484
|
ComponentDescription?: string
|
|
384
485
|
}
|
|
385
486
|
|
|
487
|
+
/**
|
|
488
|
+
* GetDownloadFlowUrl请求参数结构体
|
|
489
|
+
*/
|
|
490
|
+
export interface GetDownloadFlowUrlRequest {
|
|
491
|
+
/**
|
|
492
|
+
* 应用信息
|
|
493
|
+
此接口Agent.ProxyOrganizationOpenId 和 Agent. ProxyOperator.OpenId 必填
|
|
494
|
+
*/
|
|
495
|
+
Agent: Agent
|
|
496
|
+
|
|
497
|
+
/**
|
|
498
|
+
* 操作者的信息
|
|
499
|
+
*/
|
|
500
|
+
Operator?: UserInfo
|
|
501
|
+
|
|
502
|
+
/**
|
|
503
|
+
* 文件夹数组,合同(流程)总数不能超过50个,一个文件夹下,不能超过20个合同(流程),
|
|
504
|
+
*/
|
|
505
|
+
DownLoadFlows?: Array<DownloadFlowInfo>
|
|
506
|
+
}
|
|
507
|
+
|
|
386
508
|
/**
|
|
387
509
|
* 签署链接内容
|
|
388
510
|
*/
|
|
@@ -530,37 +652,28 @@ export interface CreateFlowsByTemplatesResponse {
|
|
|
530
652
|
}
|
|
531
653
|
|
|
532
654
|
/**
|
|
533
|
-
*
|
|
655
|
+
* PrepareFlows请求参数结构体
|
|
534
656
|
*/
|
|
535
|
-
export interface
|
|
657
|
+
export interface PrepareFlowsRequest {
|
|
536
658
|
/**
|
|
537
|
-
*
|
|
659
|
+
* 渠道应用相关信息
|
|
538
660
|
*/
|
|
539
|
-
|
|
661
|
+
Agent: Agent
|
|
540
662
|
|
|
541
663
|
/**
|
|
542
|
-
*
|
|
664
|
+
* 多个合同(流程)信息
|
|
543
665
|
*/
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
/**
|
|
547
|
-
* 经办人身份证件类型
|
|
548
|
-
用户证件类型:默认ID_CARD
|
|
549
|
-
1. ID_CARD - 居民身份证
|
|
550
|
-
2. HOUSEHOLD_REGISTER - 户口本
|
|
551
|
-
3. TEMP_ID_CARD - 临时居民身份证
|
|
552
|
-
*/
|
|
553
|
-
IdCardType?: string
|
|
666
|
+
FlowInfos: Array<FlowInfo>
|
|
554
667
|
|
|
555
668
|
/**
|
|
556
|
-
*
|
|
669
|
+
* 操作完成后的跳转地址
|
|
557
670
|
*/
|
|
558
|
-
|
|
671
|
+
JumpUrl: string
|
|
559
672
|
|
|
560
673
|
/**
|
|
561
|
-
*
|
|
674
|
+
* 操作者的信息
|
|
562
675
|
*/
|
|
563
|
-
|
|
676
|
+
Operator?: UserInfo
|
|
564
677
|
}
|
|
565
678
|
|
|
566
679
|
/**
|
|
@@ -624,6 +737,31 @@ export interface DescribeTemplatesRequest {
|
|
|
624
737
|
TemplateId?: string
|
|
625
738
|
}
|
|
626
739
|
|
|
740
|
+
/**
|
|
741
|
+
* SyncProxyOrganizationOperators请求参数结构体
|
|
742
|
+
*/
|
|
743
|
+
export interface SyncProxyOrganizationOperatorsRequest {
|
|
744
|
+
/**
|
|
745
|
+
* 操作类型,新增:"CREATE",修改:"UPDATE",离职:"RESIGN"
|
|
746
|
+
*/
|
|
747
|
+
OperatorType: string
|
|
748
|
+
|
|
749
|
+
/**
|
|
750
|
+
* 应用信息
|
|
751
|
+
*/
|
|
752
|
+
Agent: Agent
|
|
753
|
+
|
|
754
|
+
/**
|
|
755
|
+
* 经办人信息列表
|
|
756
|
+
*/
|
|
757
|
+
ProxyOrganizationOperators: Array<ProxyOrganizationOperator>
|
|
758
|
+
|
|
759
|
+
/**
|
|
760
|
+
* 操作者的信息
|
|
761
|
+
*/
|
|
762
|
+
Operator?: UserInfo
|
|
763
|
+
}
|
|
764
|
+
|
|
627
765
|
/**
|
|
628
766
|
* CreateConsoleLoginUrl返回参数结构体
|
|
629
767
|
*/
|
|
@@ -696,31 +834,6 @@ export interface SyncProxyOrganizationRequest {
|
|
|
696
834
|
Operator?: UserInfo
|
|
697
835
|
}
|
|
698
836
|
|
|
699
|
-
/**
|
|
700
|
-
* PrepareFlows请求参数结构体
|
|
701
|
-
*/
|
|
702
|
-
export interface PrepareFlowsRequest {
|
|
703
|
-
/**
|
|
704
|
-
* 渠道应用相关信息
|
|
705
|
-
*/
|
|
706
|
-
Agent: Agent
|
|
707
|
-
|
|
708
|
-
/**
|
|
709
|
-
* 多个合同(流程)信息
|
|
710
|
-
*/
|
|
711
|
-
FlowInfos: Array<FlowInfo>
|
|
712
|
-
|
|
713
|
-
/**
|
|
714
|
-
* 操作完成后的跳转地址
|
|
715
|
-
*/
|
|
716
|
-
JumpUrl: string
|
|
717
|
-
|
|
718
|
-
/**
|
|
719
|
-
* 操作者的信息
|
|
720
|
-
*/
|
|
721
|
-
Operator?: UserInfo
|
|
722
|
-
}
|
|
723
|
-
|
|
724
837
|
/**
|
|
725
838
|
* 用量明细
|
|
726
839
|
*/
|
|
@@ -768,6 +881,56 @@ export interface CreateSignUrlsResponse {
|
|
|
768
881
|
RequestId?: string
|
|
769
882
|
}
|
|
770
883
|
|
|
884
|
+
/**
|
|
885
|
+
* OperateChannelTemplate请求参数结构体
|
|
886
|
+
*/
|
|
887
|
+
export interface OperateChannelTemplateRequest {
|
|
888
|
+
/**
|
|
889
|
+
* 应用信息
|
|
890
|
+
*/
|
|
891
|
+
Agent: Agent
|
|
892
|
+
|
|
893
|
+
/**
|
|
894
|
+
* 渠道方模板库模板唯一标识
|
|
895
|
+
*/
|
|
896
|
+
TemplateId: string
|
|
897
|
+
|
|
898
|
+
/**
|
|
899
|
+
* 操作类型,查询:"SELECT",删除:"DELETE",更新:"UPDATE"
|
|
900
|
+
*/
|
|
901
|
+
OperateType: string
|
|
902
|
+
|
|
903
|
+
/**
|
|
904
|
+
* 操作者的信息
|
|
905
|
+
*/
|
|
906
|
+
Operator?: UserInfo
|
|
907
|
+
|
|
908
|
+
/**
|
|
909
|
+
* 模板可见性, 全部可见-"all", 部分可见-"part"
|
|
910
|
+
*/
|
|
911
|
+
AuthTag?: string
|
|
912
|
+
|
|
913
|
+
/**
|
|
914
|
+
* 合作企业方第三方机构唯一标识数据
|
|
915
|
+
*/
|
|
916
|
+
ProxyOrganizationOpenIds?: string
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
/**
|
|
920
|
+
* 合同(流程)下载信息
|
|
921
|
+
*/
|
|
922
|
+
export interface DownloadFlowInfo {
|
|
923
|
+
/**
|
|
924
|
+
* 文件夹名称
|
|
925
|
+
*/
|
|
926
|
+
FileName: string
|
|
927
|
+
|
|
928
|
+
/**
|
|
929
|
+
* 合同(流程)的标识数组
|
|
930
|
+
*/
|
|
931
|
+
FlowIdList: Array<string>
|
|
932
|
+
}
|
|
933
|
+
|
|
771
934
|
/**
|
|
772
935
|
* 同步经办人失败原因
|
|
773
936
|
*/
|
|
@@ -829,48 +992,37 @@ export interface DescribeUsageRequest {
|
|
|
829
992
|
}
|
|
830
993
|
|
|
831
994
|
/**
|
|
832
|
-
*
|
|
995
|
+
* 合作企业经办人列表信息
|
|
833
996
|
*/
|
|
834
|
-
export interface
|
|
835
|
-
/**
|
|
836
|
-
* 签署人唯一标识
|
|
837
|
-
*/
|
|
838
|
-
RecipientId?: string
|
|
839
|
-
|
|
840
|
-
/**
|
|
841
|
-
* 签署方类型:ENTERPRISE-企业INDIVIDUAL-自然人
|
|
842
|
-
*/
|
|
843
|
-
RecipientType?: string
|
|
844
|
-
|
|
845
|
-
/**
|
|
846
|
-
* 描述
|
|
847
|
-
*/
|
|
848
|
-
Description?: string
|
|
849
|
-
|
|
997
|
+
export interface ProxyOrganizationOperator {
|
|
850
998
|
/**
|
|
851
|
-
*
|
|
999
|
+
* 经办人ID(渠道颁发)
|
|
852
1000
|
*/
|
|
853
|
-
|
|
1001
|
+
Id: string
|
|
854
1002
|
|
|
855
1003
|
/**
|
|
856
|
-
*
|
|
1004
|
+
* 经办人姓名
|
|
857
1005
|
*/
|
|
858
|
-
|
|
1006
|
+
Name?: string
|
|
859
1007
|
|
|
860
1008
|
/**
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
1009
|
+
* 经办人身份证件类型
|
|
1010
|
+
用户证件类型:默认ID_CARD
|
|
1011
|
+
1. ID_CARD - 居民身份证
|
|
1012
|
+
2. HOUSEHOLD_REGISTER - 户口本
|
|
1013
|
+
3. TEMP_ID_CARD - 临时居民身份证
|
|
1014
|
+
*/
|
|
1015
|
+
IdCardType?: string
|
|
864
1016
|
|
|
865
1017
|
/**
|
|
866
|
-
*
|
|
1018
|
+
* 经办人身份证号
|
|
867
1019
|
*/
|
|
868
|
-
|
|
1020
|
+
IdCardNumber?: string
|
|
869
1021
|
|
|
870
1022
|
/**
|
|
871
|
-
*
|
|
1023
|
+
* 经办人手机号
|
|
872
1024
|
*/
|
|
873
|
-
|
|
1025
|
+
Mobile?: string
|
|
874
1026
|
}
|
|
875
1027
|
|
|
876
1028
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { SyncProxyOrganizationResponse, PrepareFlowsResponse, DescribeResourceUrlsByFlowsResponse, DescribeTemplatesResponse,
|
|
2
|
+
import { SyncProxyOrganizationResponse, PrepareFlowsResponse, GetDownloadFlowUrlResponse, DescribeResourceUrlsByFlowsResponse, DescribeTemplatesResponse, OperateChannelTemplateResponse, CreateSignUrlsRequest, DescribeResourceUrlsByFlowsRequest, GetDownloadFlowUrlRequest, CreateConsoleLoginUrlRequest, CreateFlowsByTemplatesResponse, PrepareFlowsRequest, SyncProxyOrganizationOperatorsResponse, DescribeTemplatesRequest, SyncProxyOrganizationOperatorsRequest, CreateConsoleLoginUrlResponse, CreateFlowsByTemplatesRequest, SyncProxyOrganizationRequest, CreateSignUrlsResponse, OperateChannelTemplateRequest, DescribeUsageRequest, DescribeUsageResponse } from "./essbasic_models";
|
|
3
3
|
/**
|
|
4
4
|
* essbasic client
|
|
5
5
|
* @class
|
|
@@ -10,10 +10,32 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
10
10
|
* 接口(CreateFlowsByTemplates)用于使用多个模板批量创建流程
|
|
11
11
|
*/
|
|
12
12
|
CreateFlowsByTemplates(req: CreateFlowsByTemplatesRequest, cb?: (error: string, rep: CreateFlowsByTemplatesResponse) => void): Promise<CreateFlowsByTemplatesResponse>;
|
|
13
|
+
/**
|
|
14
|
+
* 此接口(GetDownloadFlowUrl)用于创建电子签批量下载确认页面链接,支持客户合同(流程)归类打包下载。
|
|
15
|
+
|
|
16
|
+
*/
|
|
17
|
+
GetDownloadFlowUrl(req: GetDownloadFlowUrlRequest, cb?: (error: string, rep: GetDownloadFlowUrlResponse) => void): Promise<GetDownloadFlowUrlResponse>;
|
|
13
18
|
/**
|
|
14
19
|
* 该接口 (PrepareFlows) 用于创建待发起文件
|
|
15
20
|
*/
|
|
16
21
|
PrepareFlows(req: PrepareFlowsRequest, cb?: (error: string, rep: PrepareFlowsResponse) => void): Promise<PrepareFlowsResponse>;
|
|
22
|
+
/**
|
|
23
|
+
* 此接口(OperateChannelTemplate)用于渠道侧将模板库中的模板对合作企业进行查询和设置, 其中包括可见性的修改以及对合作企业的指定.
|
|
24
|
+
1、同步标识=select时:
|
|
25
|
+
输入规则:“可见标识”、“指定合作企业列表”为空。
|
|
26
|
+
处理规则:返回指定模版的可见标识、指定合作企业列表。
|
|
27
|
+
2、同步标识=update时:
|
|
28
|
+
输入规则:“可见标识”、“指定合作企业列表”非必填输入。
|
|
29
|
+
处理规则:
|
|
30
|
+
若“可见标识”=空,不做处理,返回当前的可见标识。
|
|
31
|
+
若“可见标识”=所有合作企业,不取“指定合作企业列表”的值处理。
|
|
32
|
+
若“可见标识”=指定合作企业,取“指定合作企业列表”的值进行更新/插入。
|
|
33
|
+
3、同步标识=delete时:
|
|
34
|
+
输入规则:“可见标识”、“指定合作企业列表”非必填输入。
|
|
35
|
+
处理规则:
|
|
36
|
+
仅取“指定合作企业列表”的值进行删除处理,为空时不做处。
|
|
37
|
+
*/
|
|
38
|
+
OperateChannelTemplate(req: OperateChannelTemplateRequest, cb?: (error: string, rep: OperateChannelTemplateResponse) => void): Promise<OperateChannelTemplateResponse>;
|
|
17
39
|
/**
|
|
18
40
|
* 根据流程Id批量创建签署参与者签署H5链接
|
|
19
41
|
*/
|
|
@@ -33,12 +33,38 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
33
33
|
async CreateFlowsByTemplates(req, cb) {
|
|
34
34
|
return this.request("CreateFlowsByTemplates", req, cb);
|
|
35
35
|
}
|
|
36
|
+
/**
|
|
37
|
+
* 此接口(GetDownloadFlowUrl)用于创建电子签批量下载确认页面链接,支持客户合同(流程)归类打包下载。
|
|
38
|
+
|
|
39
|
+
*/
|
|
40
|
+
async GetDownloadFlowUrl(req, cb) {
|
|
41
|
+
return this.request("GetDownloadFlowUrl", req, cb);
|
|
42
|
+
}
|
|
36
43
|
/**
|
|
37
44
|
* 该接口 (PrepareFlows) 用于创建待发起文件
|
|
38
45
|
*/
|
|
39
46
|
async PrepareFlows(req, cb) {
|
|
40
47
|
return this.request("PrepareFlows", req, cb);
|
|
41
48
|
}
|
|
49
|
+
/**
|
|
50
|
+
* 此接口(OperateChannelTemplate)用于渠道侧将模板库中的模板对合作企业进行查询和设置, 其中包括可见性的修改以及对合作企业的指定.
|
|
51
|
+
1、同步标识=select时:
|
|
52
|
+
输入规则:“可见标识”、“指定合作企业列表”为空。
|
|
53
|
+
处理规则:返回指定模版的可见标识、指定合作企业列表。
|
|
54
|
+
2、同步标识=update时:
|
|
55
|
+
输入规则:“可见标识”、“指定合作企业列表”非必填输入。
|
|
56
|
+
处理规则:
|
|
57
|
+
若“可见标识”=空,不做处理,返回当前的可见标识。
|
|
58
|
+
若“可见标识”=所有合作企业,不取“指定合作企业列表”的值处理。
|
|
59
|
+
若“可见标识”=指定合作企业,取“指定合作企业列表”的值进行更新/插入。
|
|
60
|
+
3、同步标识=delete时:
|
|
61
|
+
输入规则:“可见标识”、“指定合作企业列表”非必填输入。
|
|
62
|
+
处理规则:
|
|
63
|
+
仅取“指定合作企业列表”的值进行删除处理,为空时不做处。
|
|
64
|
+
*/
|
|
65
|
+
async OperateChannelTemplate(req, cb) {
|
|
66
|
+
return this.request("OperateChannelTemplate", req, cb);
|
|
67
|
+
}
|
|
42
68
|
/**
|
|
43
69
|
* 根据流程Id批量创建签署参与者签署H5链接
|
|
44
70
|
*/
|