tencentcloud-sdk-essbasic 3.0.1040 → 3.0.1041
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210526/models.rb +281 -13
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e80484ba5f4001187ec06955b4e36a7f03fcd4fd
|
4
|
+
data.tar.gz: b973a6794a013afd7be1410e88de2640f78e8000
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05cc44fb30aefba2c84be7f087cd7b7e196c8172ffa535a1a180bd1d60afd441522c4aa1cade9af94534de9e1ab4d9f73ce1d250cc339ae1071e221d27c768c9
|
7
|
+
data.tar.gz: e326b5e2b59b7188c52f43a9feb5d8f16f9252d2434bca2fb1272baca5adb8f7e1cd31015596dceec9c8c77f10430233b8f905278927a783b079f598e41abf9e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1041
|
data/lib/v20210526/models.rb
CHANGED
@@ -9657,6 +9657,7 @@ module TencentCloud
|
|
9657
9657
|
# 电子文档的控件填充信息。按照控件类型进行相应的填充。
|
9658
9658
|
|
9659
9659
|
# 当控件的 ComponentType='TEXT'时,FormField.ComponentValue填入文本内容
|
9660
|
+
|
9660
9661
|
# ```
|
9661
9662
|
# FormField输入示例:
|
9662
9663
|
# {
|
@@ -9664,7 +9665,9 @@ module TencentCloud
|
|
9664
9665
|
# "ComponentValue": "文本内容"
|
9665
9666
|
# }
|
9666
9667
|
# ```
|
9668
|
+
|
9667
9669
|
# 当控件的 ComponentType='MULTI_LINE_TEXT'时,FormField.ComponentValue填入文本内容,支持自动换行。
|
9670
|
+
|
9668
9671
|
# ```
|
9669
9672
|
# FormField输入示例:
|
9670
9673
|
# {
|
@@ -9672,7 +9675,9 @@ module TencentCloud
|
|
9672
9675
|
# "ComponentValue": "多行文本内容"
|
9673
9676
|
# }
|
9674
9677
|
# ```
|
9678
|
+
|
9675
9679
|
# 当控件的 ComponentType='CHECK_BOX'时,FormField.ComponentValue填入true或false文本
|
9680
|
+
|
9676
9681
|
# ```
|
9677
9682
|
# FormField输入示例:
|
9678
9683
|
# {
|
@@ -9680,7 +9685,9 @@ module TencentCloud
|
|
9680
9685
|
# "ComponentValue": "true"
|
9681
9686
|
# }
|
9682
9687
|
# ```
|
9688
|
+
|
9683
9689
|
# 当控件的 ComponentType='FILL_IMAGE'时,FormField.ComponentValue填入图片的资源ID
|
9690
|
+
|
9684
9691
|
# ```
|
9685
9692
|
# FormField输入示例:
|
9686
9693
|
# {
|
@@ -9688,7 +9695,9 @@ module TencentCloud
|
|
9688
9695
|
# "ComponentValue": "yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
9689
9696
|
# }
|
9690
9697
|
# ```
|
9698
|
+
|
9691
9699
|
# 当控件的 ComponentType='ATTACHMENT'时,FormField.ComponentValue填入附件图片的资源ID列表,以逗号分隔,单个附件控件最多支持6个资源ID;
|
9700
|
+
|
9692
9701
|
# ```
|
9693
9702
|
# FormField输入示例:
|
9694
9703
|
# {
|
@@ -9696,7 +9705,9 @@ module TencentCloud
|
|
9696
9705
|
# "ComponentValue": "yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx1,yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx2,yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx3"
|
9697
9706
|
# }
|
9698
9707
|
# ```
|
9708
|
+
|
9699
9709
|
# 当控件的 ComponentType='SELECTOR'时,FormField.ComponentValue填入选择的选项内容;
|
9710
|
+
|
9700
9711
|
# ```
|
9701
9712
|
# FormField输入示例:
|
9702
9713
|
# {
|
@@ -9704,7 +9715,9 @@ module TencentCloud
|
|
9704
9715
|
# "ComponentValue": "选择的内容"
|
9705
9716
|
# }
|
9706
9717
|
# ```
|
9718
|
+
|
9707
9719
|
# 当控件的 ComponentType='DATE'时,FormField.ComponentValue填入日期内容;
|
9720
|
+
|
9708
9721
|
# ```
|
9709
9722
|
# FormField输入示例:
|
9710
9723
|
# {
|
@@ -9712,7 +9725,9 @@ module TencentCloud
|
|
9712
9725
|
# "ComponentValue": "2023年01月01日"
|
9713
9726
|
# }
|
9714
9727
|
# ```
|
9728
|
+
|
9715
9729
|
# 当控件的 ComponentType='DISTRICT'时,FormField.ComponentValue填入省市区内容;
|
9730
|
+
|
9716
9731
|
# ```
|
9717
9732
|
# FormField输入示例:
|
9718
9733
|
# {
|
@@ -9720,6 +9735,7 @@ module TencentCloud
|
|
9720
9735
|
# "ComponentValue": "广东省深圳市福田区"
|
9721
9736
|
# }
|
9722
9737
|
# ```
|
9738
|
+
|
9723
9739
|
# 【数据表格传参说明】
|
9724
9740
|
# 当控件的 ComponentType='DYNAMIC_TABLE'时,FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充数据表格(支持内容的单元格合并)
|
9725
9741
|
# 输入示例1:
|
@@ -9764,7 +9780,6 @@ module TencentCloud
|
|
9764
9780
|
# ]
|
9765
9781
|
# }
|
9766
9782
|
# }
|
9767
|
-
|
9768
9783
|
# ```
|
9769
9784
|
|
9770
9785
|
# 输入示例2(表格表头宽度比例配置):
|
@@ -9812,10 +9827,8 @@ module TencentCloud
|
|
9812
9827
|
# ]
|
9813
9828
|
# }
|
9814
9829
|
# }
|
9815
|
-
|
9816
9830
|
# ```
|
9817
9831
|
|
9818
|
-
|
9819
9832
|
# 输入示例3(表格设置字体加粗颜色):
|
9820
9833
|
|
9821
9834
|
# ```
|
@@ -9861,21 +9874,276 @@ module TencentCloud
|
|
9861
9874
|
# ]
|
9862
9875
|
# }
|
9863
9876
|
# }
|
9877
|
+
# ```
|
9864
9878
|
|
9879
|
+
# 输入示例4(表格设置表头不合成到文件):
|
9880
|
+
|
9881
|
+
# ```
|
9882
|
+
# {
|
9883
|
+
# "headers": [
|
9884
|
+
# {
|
9885
|
+
# "content": "序号"
|
9886
|
+
# },
|
9887
|
+
# {
|
9888
|
+
# "content": "品牌"
|
9889
|
+
# },
|
9890
|
+
# {
|
9891
|
+
# "content": "商品名称"
|
9892
|
+
# },
|
9893
|
+
# {
|
9894
|
+
# "content": "粒径"
|
9895
|
+
# },
|
9896
|
+
# {
|
9897
|
+
# "content": "规格"
|
9898
|
+
# },
|
9899
|
+
# {
|
9900
|
+
# "content": "数量(包)"
|
9901
|
+
# },
|
9902
|
+
# {
|
9903
|
+
# "content": "重量(吨)"
|
9904
|
+
# }
|
9905
|
+
# ],
|
9906
|
+
# "rowCount": 5,
|
9907
|
+
# "body": {
|
9908
|
+
# "cells": [
|
9909
|
+
# {
|
9910
|
+
# "rowStart": 1,
|
9911
|
+
# "rowEnd": 1,
|
9912
|
+
# "columnStart": 1,
|
9913
|
+
# "columnEnd": 1,
|
9914
|
+
# "content": "1"
|
9915
|
+
# },
|
9916
|
+
# {
|
9917
|
+
# "rowStart": 1,
|
9918
|
+
# "rowEnd": 1,
|
9919
|
+
# "columnStart": 2,
|
9920
|
+
# "columnEnd": 2,
|
9921
|
+
# "content": "品牌名称1"
|
9922
|
+
# },
|
9923
|
+
# {
|
9924
|
+
# "rowStart": 1,
|
9925
|
+
# "rowEnd": 1,
|
9926
|
+
# "columnStart": 3,
|
9927
|
+
# "columnEnd": 3,
|
9928
|
+
# "content": "商品名称1"
|
9929
|
+
# },
|
9930
|
+
# {
|
9931
|
+
# "rowStart": 1,
|
9932
|
+
# "rowEnd": 1,
|
9933
|
+
# "columnStart": 4,
|
9934
|
+
# "columnEnd": 4,
|
9935
|
+
# "content": "7#"
|
9936
|
+
# },
|
9937
|
+
# {
|
9938
|
+
# "rowStart": 1,
|
9939
|
+
# "rowEnd": 1,
|
9940
|
+
# "columnStart": 5,
|
9941
|
+
# "columnEnd": 5,
|
9942
|
+
# "content": "20"
|
9943
|
+
# },
|
9944
|
+
# {
|
9945
|
+
# "rowStart": 1,
|
9946
|
+
# "rowEnd": 1,
|
9947
|
+
# "columnStart": 6,
|
9948
|
+
# "columnEnd": 6,
|
9949
|
+
# "content": "50"
|
9950
|
+
# },
|
9951
|
+
# {
|
9952
|
+
# "rowStart": 1,
|
9953
|
+
# "rowEnd": 1,
|
9954
|
+
# "columnStart": 7,
|
9955
|
+
# "columnEnd": 7,
|
9956
|
+
# "content": "1.000"
|
9957
|
+
# },
|
9958
|
+
# {
|
9959
|
+
# "rowStart": 2,
|
9960
|
+
# "rowEnd": 2,
|
9961
|
+
# "columnStart": 1,
|
9962
|
+
# "columnEnd": 1,
|
9963
|
+
# "content": "2"
|
9964
|
+
# },
|
9965
|
+
# {
|
9966
|
+
# "rowStart": 2,
|
9967
|
+
# "rowEnd": 2,
|
9968
|
+
# "columnStart": 2,
|
9969
|
+
# "columnEnd": 2,
|
9970
|
+
# "content": "品牌名称2"
|
9971
|
+
# },
|
9972
|
+
# {
|
9973
|
+
# "rowStart": 2,
|
9974
|
+
# "rowEnd": 2,
|
9975
|
+
# "columnStart": 3,
|
9976
|
+
# "columnEnd": 3,
|
9977
|
+
# "content": "商品名称2"
|
9978
|
+
# },
|
9979
|
+
# {
|
9980
|
+
# "rowStart": 2,
|
9981
|
+
# "rowEnd": 2,
|
9982
|
+
# "columnStart": 4,
|
9983
|
+
# "columnEnd": 4,
|
9984
|
+
# "content": "5#"
|
9985
|
+
# },
|
9986
|
+
# {
|
9987
|
+
# "rowStart": 2,
|
9988
|
+
# "rowEnd": 2,
|
9989
|
+
# "columnStart": 5,
|
9990
|
+
# "columnEnd": 5,
|
9991
|
+
# "content": "20"
|
9992
|
+
# },
|
9993
|
+
# {
|
9994
|
+
# "rowStart": 2,
|
9995
|
+
# "rowEnd": 2,
|
9996
|
+
# "columnStart": 6,
|
9997
|
+
# "columnEnd": 6,
|
9998
|
+
# "content": "20"
|
9999
|
+
# },
|
10000
|
+
# {
|
10001
|
+
# "rowStart": 2,
|
10002
|
+
# "rowEnd": 2,
|
10003
|
+
# "columnStart": 7,
|
10004
|
+
# "columnEnd": 7,
|
10005
|
+
# "content": "0.400"
|
10006
|
+
# },
|
10007
|
+
# {
|
10008
|
+
# "rowStart": 3,
|
10009
|
+
# "rowEnd": 3,
|
10010
|
+
# "columnStart": 1,
|
10011
|
+
# "columnEnd": 1,
|
10012
|
+
# "content": "3"
|
10013
|
+
# },
|
10014
|
+
# {
|
10015
|
+
# "rowStart": 3,
|
10016
|
+
# "rowEnd": 3,
|
10017
|
+
# "columnStart": 2,
|
10018
|
+
# "columnEnd": 2,
|
10019
|
+
# "content": "品牌名称3"
|
10020
|
+
# },
|
10021
|
+
# {
|
10022
|
+
# "rowStart": 3,
|
10023
|
+
# "rowEnd": 3,
|
10024
|
+
# "columnStart": 3,
|
10025
|
+
# "columnEnd": 3,
|
10026
|
+
# "content": "商品名称3"
|
10027
|
+
# },
|
10028
|
+
# {
|
10029
|
+
# "rowStart": 3,
|
10030
|
+
# "rowEnd": 3,
|
10031
|
+
# "columnStart": 4,
|
10032
|
+
# "columnEnd": 4,
|
10033
|
+
# "content": "2#"
|
10034
|
+
# },
|
10035
|
+
# {
|
10036
|
+
# "rowStart": 3,
|
10037
|
+
# "rowEnd": 3,
|
10038
|
+
# "columnStart": 5,
|
10039
|
+
# "columnEnd": 5,
|
10040
|
+
# "content": "20"
|
10041
|
+
# },
|
10042
|
+
# {
|
10043
|
+
# "rowStart": 3,
|
10044
|
+
# "rowEnd": 3,
|
10045
|
+
# "columnStart": 6,
|
10046
|
+
# "columnEnd": 6,
|
10047
|
+
# "content": "5"
|
10048
|
+
# },
|
10049
|
+
# {
|
10050
|
+
# "rowStart": 3,
|
10051
|
+
# "rowEnd": 3,
|
10052
|
+
# "columnStart": 7,
|
10053
|
+
# "columnEnd": 7,
|
10054
|
+
# "content": "0.100"
|
10055
|
+
# },
|
10056
|
+
# {
|
10057
|
+
# "rowStart": 4,
|
10058
|
+
# "rowEnd": 4,
|
10059
|
+
# "columnStart": 1,
|
10060
|
+
# "columnEnd": 1,
|
10061
|
+
# "content": "4"
|
10062
|
+
# },
|
10063
|
+
# {
|
10064
|
+
# "rowStart": 4,
|
10065
|
+
# "rowEnd": 4,
|
10066
|
+
# "columnStart": 2,
|
10067
|
+
# "columnEnd": 2,
|
10068
|
+
# "content": "品牌名称4"
|
10069
|
+
# },
|
10070
|
+
# {
|
10071
|
+
# "rowStart": 4,
|
10072
|
+
# "rowEnd": 4,
|
10073
|
+
# "columnStart": 3,
|
10074
|
+
# "columnEnd": 3,
|
10075
|
+
# "content": "商品名称4"
|
10076
|
+
# },
|
10077
|
+
# {
|
10078
|
+
# "rowStart": 4,
|
10079
|
+
# "rowEnd": 4,
|
10080
|
+
# "columnStart": 4,
|
10081
|
+
# "columnEnd": 4,
|
10082
|
+
# "content": "3#"
|
10083
|
+
# },
|
10084
|
+
# {
|
10085
|
+
# "rowStart": 4,
|
10086
|
+
# "rowEnd": 4,
|
10087
|
+
# "columnStart": 5,
|
10088
|
+
# "columnEnd": 5,
|
10089
|
+
# "content": "20"
|
10090
|
+
# },
|
10091
|
+
# {
|
10092
|
+
# "rowStart": 4,
|
10093
|
+
# "rowEnd": 4,
|
10094
|
+
# "columnStart": 6,
|
10095
|
+
# "columnEnd": 6,
|
10096
|
+
# "content": "10"
|
10097
|
+
# },
|
10098
|
+
# {
|
10099
|
+
# "rowStart": 4,
|
10100
|
+
# "rowEnd": 4,
|
10101
|
+
# "columnStart": 7,
|
10102
|
+
# "columnEnd": 7,
|
10103
|
+
# "content": "0.200"
|
10104
|
+
# },
|
10105
|
+
# {
|
10106
|
+
# "rowStart": 5,
|
10107
|
+
# "rowEnd": 5,
|
10108
|
+
# "columnStart": 1,
|
10109
|
+
# "columnEnd": 5,
|
10110
|
+
# "content": "合计"
|
10111
|
+
# },
|
10112
|
+
# {
|
10113
|
+
# "rowStart": 5,
|
10114
|
+
# "rowEnd": 5,
|
10115
|
+
# "columnStart": 6,
|
10116
|
+
# "columnEnd": 6,
|
10117
|
+
# "content": "85"
|
10118
|
+
# },
|
10119
|
+
# {
|
10120
|
+
# "rowStart": 5,
|
10121
|
+
# "rowEnd": 5,
|
10122
|
+
# "columnStart": 7,
|
10123
|
+
# "columnEnd": 7,
|
10124
|
+
# "content": "1.700"
|
10125
|
+
# }
|
10126
|
+
# ]
|
10127
|
+
# },
|
10128
|
+
# "settings": {
|
10129
|
+
# "headerRowDisplay": false
|
10130
|
+
# }
|
10131
|
+
# }
|
9865
10132
|
# ```
|
9866
10133
|
|
9867
10134
|
# 表格参数说明
|
9868
10135
|
|
9869
|
-
# | 名称 | 类型 | 描述
|
9870
|
-
# | ------------------- | ------- |
|
9871
|
-
# | headers | Array | 表头:不超过10列,不支持单元格合并,字数不超过100
|
9872
|
-
# | rowCount | Integer | 表格内容最大行数
|
9873
|
-
# | cells.N.rowStart | Integer | 单元格坐标:行起始index
|
9874
|
-
# | cells.N.rowEnd | Integer | 单元格坐标:行结束index
|
9875
|
-
# | cells.N.columnStart | Integer | 单元格坐标:列起始index
|
9876
|
-
# | cells.N.columnEnd | Integer | 单元格坐标:列结束index
|
9877
|
-
# | cells.N.content | String | 单元格内容,字数不超过100
|
9878
|
-
# | cells.N.style
|
10136
|
+
# | 名称 | 类型 | 描述 |
|
10137
|
+
# | ------------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------- |
|
10138
|
+
# | headers | Array | 表头:不超过10列,不支持单元格合并,字数不超过100 |
|
10139
|
+
# | rowCount | Integer | 表格内容最大行数 |
|
10140
|
+
# | cells.N.rowStart | Integer | 单元格坐标:行起始index |
|
10141
|
+
# | cells.N.rowEnd | Integer | 单元格坐标:行结束index |
|
10142
|
+
# | cells.N.columnStart | Integer | 单元格坐标:列起始index |
|
10143
|
+
# | cells.N.columnEnd | Integer | 单元格坐标:列结束index |
|
10144
|
+
# | cells.N.content | String | 单元格内容,字数不超过100 |
|
10145
|
+
# | cells.N.style | String | 单元格字体风格配置 ,风格配置的json字符串 如: {"font":"黑体","fontSize":12,"color":"#FFFFFF","bold":true,"align":"CENTER"} |
|
10146
|
+
# | settings | Object | 表格全局设定。目前支持设置表头不显示,示例:{"headerRowDisplay":false} |
|
9879
10147
|
|
9880
10148
|
# 表格参数headers说明
|
9881
10149
|
# widthPercent Integer 表头单元格列占总表头的比例,例如1:30表示 此列占表头的30%,不填写时列宽度平均拆分;例如2:总2列,某一列填写40,剩余列可以为空,按照60计算。;例如3:总3列,某一列填写30,剩余2列可以为空,分别为(100-30)/2=35
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-essbasic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1041
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-04-
|
11
|
+
date: 2025-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|