tencentcloud-sdk-python 3.0.1360__py2.py3-none-any.whl → 3.0.1361__py2.py3-none-any.whl
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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/bh/v20230418/bh_client.py +23 -0
- tencentcloud/bh/v20230418/models.py +139 -0
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +6 -6
- tencentcloud/cdwdoris/v20211228/models.py +30 -0
- tencentcloud/cdwpg/v20201230/models.py +22 -198
- tencentcloud/cvm/v20170312/models.py +20 -10
- tencentcloud/cynosdb/v20190107/models.py +45 -0
- tencentcloud/dlc/v20210125/models.py +107 -564
- tencentcloud/dsgc/v20190723/models.py +30 -0
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/models.py +214 -0
- tencentcloud/ess/v20201111/models.py +256 -0
- tencentcloud/essbasic/v20210526/models.py +281 -13
- tencentcloud/gaap/v20180529/models.py +0 -166
- tencentcloud/ioa/v20220601/ioa_client.py +46 -0
- tencentcloud/ioa/v20220601/models.py +358 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +46 -0
- tencentcloud/iotexplorer/v20190423/models.py +600 -0
- tencentcloud/kms/v20190118/models.py +71 -0
- tencentcloud/lcic/v20220817/models.py +34 -0
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +4 -1
- tencentcloud/lighthouse/v20200324/models.py +14 -10
- tencentcloud/monitor/v20180724/models.py +2 -2
- tencentcloud/monitor/v20180724/monitor_client.py +1 -1
- tencentcloud/mps/v20190612/models.py +4 -4
- tencentcloud/privatedns/v20201028/models.py +6 -6
- tencentcloud/tan/v20220420/tan_client.py +3 -1
- tencentcloud/trocket/v20230308/models.py +1398 -66
- tencentcloud/trocket/v20230308/trocket_client.py +214 -0
- tencentcloud/wedata/v20210820/models.py +6 -6
- {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/RECORD +37 -37
- {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1360.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/top_level.txt +0 -0
@@ -16798,9 +16798,15 @@ class DescribeDSPALevelGroupsRequest(AbstractModel):
|
|
16798
16798
|
:type DspaId: str
|
16799
16799
|
:param _Name: 分级组名称
|
16800
16800
|
:type Name: str
|
16801
|
+
:param _Limit: 每页返回的记录数
|
16802
|
+
:type Limit: int
|
16803
|
+
:param _Offset: 从第几条记录开始返回
|
16804
|
+
:type Offset: int
|
16801
16805
|
"""
|
16802
16806
|
self._DspaId = None
|
16803
16807
|
self._Name = None
|
16808
|
+
self._Limit = None
|
16809
|
+
self._Offset = None
|
16804
16810
|
|
16805
16811
|
@property
|
16806
16812
|
def DspaId(self):
|
@@ -16824,10 +16830,34 @@ class DescribeDSPALevelGroupsRequest(AbstractModel):
|
|
16824
16830
|
def Name(self, Name):
|
16825
16831
|
self._Name = Name
|
16826
16832
|
|
16833
|
+
@property
|
16834
|
+
def Limit(self):
|
16835
|
+
"""每页返回的记录数
|
16836
|
+
:rtype: int
|
16837
|
+
"""
|
16838
|
+
return self._Limit
|
16839
|
+
|
16840
|
+
@Limit.setter
|
16841
|
+
def Limit(self, Limit):
|
16842
|
+
self._Limit = Limit
|
16843
|
+
|
16844
|
+
@property
|
16845
|
+
def Offset(self):
|
16846
|
+
"""从第几条记录开始返回
|
16847
|
+
:rtype: int
|
16848
|
+
"""
|
16849
|
+
return self._Offset
|
16850
|
+
|
16851
|
+
@Offset.setter
|
16852
|
+
def Offset(self, Offset):
|
16853
|
+
self._Offset = Offset
|
16854
|
+
|
16827
16855
|
|
16828
16856
|
def _deserialize(self, params):
|
16829
16857
|
self._DspaId = params.get("DspaId")
|
16830
16858
|
self._Name = params.get("Name")
|
16859
|
+
self._Limit = params.get("Limit")
|
16860
|
+
self._Offset = params.get("Offset")
|
16831
16861
|
memeber_set = set(params.keys())
|
16832
16862
|
for name, value in vars(self).items():
|
16833
16863
|
property_name = name[1:]
|
@@ -650,6 +650,29 @@ class EmrClient(AbstractClient):
|
|
650
650
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
651
651
|
|
652
652
|
|
653
|
+
def DescribeInspectionTaskResult(self, request):
|
654
|
+
"""获取巡检任务结果列表
|
655
|
+
|
656
|
+
:param request: Request instance for DescribeInspectionTaskResult.
|
657
|
+
:type request: :class:`tencentcloud.emr.v20190103.models.DescribeInspectionTaskResultRequest`
|
658
|
+
:rtype: :class:`tencentcloud.emr.v20190103.models.DescribeInspectionTaskResultResponse`
|
659
|
+
|
660
|
+
"""
|
661
|
+
try:
|
662
|
+
params = request._serialize()
|
663
|
+
headers = request.headers
|
664
|
+
body = self.call("DescribeInspectionTaskResult", params, headers=headers)
|
665
|
+
response = json.loads(body)
|
666
|
+
model = models.DescribeInspectionTaskResultResponse()
|
667
|
+
model._deserialize(response["Response"])
|
668
|
+
return model
|
669
|
+
except Exception as e:
|
670
|
+
if isinstance(e, TencentCloudSDKException):
|
671
|
+
raise
|
672
|
+
else:
|
673
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
674
|
+
|
675
|
+
|
653
676
|
def DescribeInstanceRenewNodes(self, request):
|
654
677
|
"""查询待续费节点信息
|
655
678
|
|
@@ -5660,6 +5660,8 @@ class CreateSLInstanceRequest(AbstractModel):
|
|
5660
5660
|
:type Tags: list of Tag
|
5661
5661
|
:param _PrePaySetting: 预付费参数
|
5662
5662
|
:type PrePaySetting: :class:`tencentcloud.emr.v20190103.models.PrePaySetting`
|
5663
|
+
:param _ClientToken: 唯一随机标识,时效性为5分钟,需要调用者指定 防止客户端重复创建资源,例如 a9a90aa6-****-****-****-fae360632808
|
5664
|
+
:type ClientToken: str
|
5663
5665
|
"""
|
5664
5666
|
self._InstanceName = None
|
5665
5667
|
self._PayMode = None
|
@@ -5669,6 +5671,7 @@ class CreateSLInstanceRequest(AbstractModel):
|
|
5669
5671
|
self._ZoneSettings = None
|
5670
5672
|
self._Tags = None
|
5671
5673
|
self._PrePaySetting = None
|
5674
|
+
self._ClientToken = None
|
5672
5675
|
|
5673
5676
|
@property
|
5674
5677
|
def InstanceName(self):
|
@@ -5758,6 +5761,17 @@ class CreateSLInstanceRequest(AbstractModel):
|
|
5758
5761
|
def PrePaySetting(self, PrePaySetting):
|
5759
5762
|
self._PrePaySetting = PrePaySetting
|
5760
5763
|
|
5764
|
+
@property
|
5765
|
+
def ClientToken(self):
|
5766
|
+
"""唯一随机标识,时效性为5分钟,需要调用者指定 防止客户端重复创建资源,例如 a9a90aa6-****-****-****-fae360632808
|
5767
|
+
:rtype: str
|
5768
|
+
"""
|
5769
|
+
return self._ClientToken
|
5770
|
+
|
5771
|
+
@ClientToken.setter
|
5772
|
+
def ClientToken(self, ClientToken):
|
5773
|
+
self._ClientToken = ClientToken
|
5774
|
+
|
5761
5775
|
|
5762
5776
|
def _deserialize(self, params):
|
5763
5777
|
self._InstanceName = params.get("InstanceName")
|
@@ -5780,6 +5794,7 @@ class CreateSLInstanceRequest(AbstractModel):
|
|
5780
5794
|
if params.get("PrePaySetting") is not None:
|
5781
5795
|
self._PrePaySetting = PrePaySetting()
|
5782
5796
|
self._PrePaySetting._deserialize(params.get("PrePaySetting"))
|
5797
|
+
self._ClientToken = params.get("ClientToken")
|
5783
5798
|
memeber_set = set(params.keys())
|
5784
5799
|
for name, value in vars(self).items():
|
5785
5800
|
property_name = name[1:]
|
@@ -9490,6 +9505,190 @@ class DescribeInsightListResponse(AbstractModel):
|
|
9490
9505
|
self._RequestId = params.get("RequestId")
|
9491
9506
|
|
9492
9507
|
|
9508
|
+
class DescribeInspectionTaskResultRequest(AbstractModel):
|
9509
|
+
"""DescribeInspectionTaskResult请求参数结构体
|
9510
|
+
|
9511
|
+
"""
|
9512
|
+
|
9513
|
+
def __init__(self):
|
9514
|
+
r"""
|
9515
|
+
:param _InstanceId: 实例ID
|
9516
|
+
:type InstanceId: str
|
9517
|
+
:param _Type: 类型
|
9518
|
+
:type Type: str
|
9519
|
+
:param _StartTime: 开始时间
|
9520
|
+
:type StartTime: int
|
9521
|
+
:param _EndTime: 结束时间
|
9522
|
+
:type EndTime: int
|
9523
|
+
:param _Limit: 分页大小
|
9524
|
+
:type Limit: int
|
9525
|
+
:param _Offset: 分页偏移量
|
9526
|
+
:type Offset: int
|
9527
|
+
"""
|
9528
|
+
self._InstanceId = None
|
9529
|
+
self._Type = None
|
9530
|
+
self._StartTime = None
|
9531
|
+
self._EndTime = None
|
9532
|
+
self._Limit = None
|
9533
|
+
self._Offset = None
|
9534
|
+
|
9535
|
+
@property
|
9536
|
+
def InstanceId(self):
|
9537
|
+
"""实例ID
|
9538
|
+
:rtype: str
|
9539
|
+
"""
|
9540
|
+
return self._InstanceId
|
9541
|
+
|
9542
|
+
@InstanceId.setter
|
9543
|
+
def InstanceId(self, InstanceId):
|
9544
|
+
self._InstanceId = InstanceId
|
9545
|
+
|
9546
|
+
@property
|
9547
|
+
def Type(self):
|
9548
|
+
"""类型
|
9549
|
+
:rtype: str
|
9550
|
+
"""
|
9551
|
+
return self._Type
|
9552
|
+
|
9553
|
+
@Type.setter
|
9554
|
+
def Type(self, Type):
|
9555
|
+
self._Type = Type
|
9556
|
+
|
9557
|
+
@property
|
9558
|
+
def StartTime(self):
|
9559
|
+
"""开始时间
|
9560
|
+
:rtype: int
|
9561
|
+
"""
|
9562
|
+
return self._StartTime
|
9563
|
+
|
9564
|
+
@StartTime.setter
|
9565
|
+
def StartTime(self, StartTime):
|
9566
|
+
self._StartTime = StartTime
|
9567
|
+
|
9568
|
+
@property
|
9569
|
+
def EndTime(self):
|
9570
|
+
"""结束时间
|
9571
|
+
:rtype: int
|
9572
|
+
"""
|
9573
|
+
return self._EndTime
|
9574
|
+
|
9575
|
+
@EndTime.setter
|
9576
|
+
def EndTime(self, EndTime):
|
9577
|
+
self._EndTime = EndTime
|
9578
|
+
|
9579
|
+
@property
|
9580
|
+
def Limit(self):
|
9581
|
+
"""分页大小
|
9582
|
+
:rtype: int
|
9583
|
+
"""
|
9584
|
+
return self._Limit
|
9585
|
+
|
9586
|
+
@Limit.setter
|
9587
|
+
def Limit(self, Limit):
|
9588
|
+
self._Limit = Limit
|
9589
|
+
|
9590
|
+
@property
|
9591
|
+
def Offset(self):
|
9592
|
+
"""分页偏移量
|
9593
|
+
:rtype: int
|
9594
|
+
"""
|
9595
|
+
return self._Offset
|
9596
|
+
|
9597
|
+
@Offset.setter
|
9598
|
+
def Offset(self, Offset):
|
9599
|
+
self._Offset = Offset
|
9600
|
+
|
9601
|
+
|
9602
|
+
def _deserialize(self, params):
|
9603
|
+
self._InstanceId = params.get("InstanceId")
|
9604
|
+
self._Type = params.get("Type")
|
9605
|
+
self._StartTime = params.get("StartTime")
|
9606
|
+
self._EndTime = params.get("EndTime")
|
9607
|
+
self._Limit = params.get("Limit")
|
9608
|
+
self._Offset = params.get("Offset")
|
9609
|
+
memeber_set = set(params.keys())
|
9610
|
+
for name, value in vars(self).items():
|
9611
|
+
property_name = name[1:]
|
9612
|
+
if property_name in memeber_set:
|
9613
|
+
memeber_set.remove(property_name)
|
9614
|
+
if len(memeber_set) > 0:
|
9615
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
9616
|
+
|
9617
|
+
|
9618
|
+
|
9619
|
+
class DescribeInspectionTaskResultResponse(AbstractModel):
|
9620
|
+
"""DescribeInspectionTaskResult返回参数结构体
|
9621
|
+
|
9622
|
+
"""
|
9623
|
+
|
9624
|
+
def __init__(self):
|
9625
|
+
r"""
|
9626
|
+
:param _InspectionResultInfo: 巡检任务记录,base64编码
|
9627
|
+
:type InspectionResultInfo: str
|
9628
|
+
:param _Total: 记录总数
|
9629
|
+
:type Total: int
|
9630
|
+
:param _TypeInfo: 类别信息,base64编码,{"FixedTime": "定时", "RealTime": "及时"}
|
9631
|
+
:type TypeInfo: str
|
9632
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9633
|
+
:type RequestId: str
|
9634
|
+
"""
|
9635
|
+
self._InspectionResultInfo = None
|
9636
|
+
self._Total = None
|
9637
|
+
self._TypeInfo = None
|
9638
|
+
self._RequestId = None
|
9639
|
+
|
9640
|
+
@property
|
9641
|
+
def InspectionResultInfo(self):
|
9642
|
+
"""巡检任务记录,base64编码
|
9643
|
+
:rtype: str
|
9644
|
+
"""
|
9645
|
+
return self._InspectionResultInfo
|
9646
|
+
|
9647
|
+
@InspectionResultInfo.setter
|
9648
|
+
def InspectionResultInfo(self, InspectionResultInfo):
|
9649
|
+
self._InspectionResultInfo = InspectionResultInfo
|
9650
|
+
|
9651
|
+
@property
|
9652
|
+
def Total(self):
|
9653
|
+
"""记录总数
|
9654
|
+
:rtype: int
|
9655
|
+
"""
|
9656
|
+
return self._Total
|
9657
|
+
|
9658
|
+
@Total.setter
|
9659
|
+
def Total(self, Total):
|
9660
|
+
self._Total = Total
|
9661
|
+
|
9662
|
+
@property
|
9663
|
+
def TypeInfo(self):
|
9664
|
+
"""类别信息,base64编码,{"FixedTime": "定时", "RealTime": "及时"}
|
9665
|
+
:rtype: str
|
9666
|
+
"""
|
9667
|
+
return self._TypeInfo
|
9668
|
+
|
9669
|
+
@TypeInfo.setter
|
9670
|
+
def TypeInfo(self, TypeInfo):
|
9671
|
+
self._TypeInfo = TypeInfo
|
9672
|
+
|
9673
|
+
@property
|
9674
|
+
def RequestId(self):
|
9675
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9676
|
+
:rtype: str
|
9677
|
+
"""
|
9678
|
+
return self._RequestId
|
9679
|
+
|
9680
|
+
@RequestId.setter
|
9681
|
+
def RequestId(self, RequestId):
|
9682
|
+
self._RequestId = RequestId
|
9683
|
+
|
9684
|
+
|
9685
|
+
def _deserialize(self, params):
|
9686
|
+
self._InspectionResultInfo = params.get("InspectionResultInfo")
|
9687
|
+
self._Total = params.get("Total")
|
9688
|
+
self._TypeInfo = params.get("TypeInfo")
|
9689
|
+
self._RequestId = params.get("RequestId")
|
9690
|
+
|
9691
|
+
|
9493
9692
|
class DescribeInstanceRenewNodesRequest(AbstractModel):
|
9494
9693
|
"""DescribeInstanceRenewNodes请求参数结构体
|
9495
9694
|
|
@@ -21447,10 +21646,13 @@ class ModifySLInstanceRequest(AbstractModel):
|
|
21447
21646
|
:type Zone: str
|
21448
21647
|
:param _NodeNum: 该区域变配后的目标节点数量,所有区域节点总数应大于等于3,小于等于50。
|
21449
21648
|
:type NodeNum: int
|
21649
|
+
:param _ClientToken: 唯一随机标识,时效性为5分钟,需要调用者指定 防止客户端重复创建资源,例如 a9a90aa6-****-****-****-fae360632808
|
21650
|
+
:type ClientToken: str
|
21450
21651
|
"""
|
21451
21652
|
self._InstanceId = None
|
21452
21653
|
self._Zone = None
|
21453
21654
|
self._NodeNum = None
|
21655
|
+
self._ClientToken = None
|
21454
21656
|
|
21455
21657
|
@property
|
21456
21658
|
def InstanceId(self):
|
@@ -21485,11 +21687,23 @@ class ModifySLInstanceRequest(AbstractModel):
|
|
21485
21687
|
def NodeNum(self, NodeNum):
|
21486
21688
|
self._NodeNum = NodeNum
|
21487
21689
|
|
21690
|
+
@property
|
21691
|
+
def ClientToken(self):
|
21692
|
+
"""唯一随机标识,时效性为5分钟,需要调用者指定 防止客户端重复创建资源,例如 a9a90aa6-****-****-****-fae360632808
|
21693
|
+
:rtype: str
|
21694
|
+
"""
|
21695
|
+
return self._ClientToken
|
21696
|
+
|
21697
|
+
@ClientToken.setter
|
21698
|
+
def ClientToken(self, ClientToken):
|
21699
|
+
self._ClientToken = ClientToken
|
21700
|
+
|
21488
21701
|
|
21489
21702
|
def _deserialize(self, params):
|
21490
21703
|
self._InstanceId = params.get("InstanceId")
|
21491
21704
|
self._Zone = params.get("Zone")
|
21492
21705
|
self._NodeNum = params.get("NodeNum")
|
21706
|
+
self._ClientToken = params.get("ClientToken")
|
21493
21707
|
memeber_set = set(params.keys())
|
21494
21708
|
for name, value in vars(self).items():
|
21495
21709
|
property_name = name[1:]
|
@@ -26226,6 +26226,261 @@ class FormField(AbstractModel):
|
|
26226
26226
|
|
26227
26227
|
```
|
26228
26228
|
|
26229
|
+
输入示例4(表格设置表头不合成到文件):
|
26230
|
+
|
26231
|
+
```
|
26232
|
+
{
|
26233
|
+
"headers": [
|
26234
|
+
{
|
26235
|
+
"content": "序号"
|
26236
|
+
},
|
26237
|
+
{
|
26238
|
+
"content": "品牌"
|
26239
|
+
},
|
26240
|
+
{
|
26241
|
+
"content": "商品名称"
|
26242
|
+
},
|
26243
|
+
{
|
26244
|
+
"content": "粒径"
|
26245
|
+
},
|
26246
|
+
{
|
26247
|
+
"content": "规格"
|
26248
|
+
},
|
26249
|
+
{
|
26250
|
+
"content": "数量(包)"
|
26251
|
+
},
|
26252
|
+
{
|
26253
|
+
"content": "重量(吨)"
|
26254
|
+
}
|
26255
|
+
],
|
26256
|
+
"rowCount": 5,
|
26257
|
+
"body": {
|
26258
|
+
"cells": [
|
26259
|
+
{
|
26260
|
+
"rowStart": 1,
|
26261
|
+
"rowEnd": 1,
|
26262
|
+
"columnStart": 1,
|
26263
|
+
"columnEnd": 1,
|
26264
|
+
"content": "1"
|
26265
|
+
},
|
26266
|
+
{
|
26267
|
+
"rowStart": 1,
|
26268
|
+
"rowEnd": 1,
|
26269
|
+
"columnStart": 2,
|
26270
|
+
"columnEnd": 2,
|
26271
|
+
"content": "品牌名称1"
|
26272
|
+
},
|
26273
|
+
{
|
26274
|
+
"rowStart": 1,
|
26275
|
+
"rowEnd": 1,
|
26276
|
+
"columnStart": 3,
|
26277
|
+
"columnEnd": 3,
|
26278
|
+
"content": "商品名称1"
|
26279
|
+
},
|
26280
|
+
{
|
26281
|
+
"rowStart": 1,
|
26282
|
+
"rowEnd": 1,
|
26283
|
+
"columnStart": 4,
|
26284
|
+
"columnEnd": 4,
|
26285
|
+
"content": "7#"
|
26286
|
+
},
|
26287
|
+
{
|
26288
|
+
"rowStart": 1,
|
26289
|
+
"rowEnd": 1,
|
26290
|
+
"columnStart": 5,
|
26291
|
+
"columnEnd": 5,
|
26292
|
+
"content": "20"
|
26293
|
+
},
|
26294
|
+
{
|
26295
|
+
"rowStart": 1,
|
26296
|
+
"rowEnd": 1,
|
26297
|
+
"columnStart": 6,
|
26298
|
+
"columnEnd": 6,
|
26299
|
+
"content": "50"
|
26300
|
+
},
|
26301
|
+
{
|
26302
|
+
"rowStart": 1,
|
26303
|
+
"rowEnd": 1,
|
26304
|
+
"columnStart": 7,
|
26305
|
+
"columnEnd": 7,
|
26306
|
+
"content": "1.000"
|
26307
|
+
},
|
26308
|
+
{
|
26309
|
+
"rowStart": 2,
|
26310
|
+
"rowEnd": 2,
|
26311
|
+
"columnStart": 1,
|
26312
|
+
"columnEnd": 1,
|
26313
|
+
"content": "2"
|
26314
|
+
},
|
26315
|
+
{
|
26316
|
+
"rowStart": 2,
|
26317
|
+
"rowEnd": 2,
|
26318
|
+
"columnStart": 2,
|
26319
|
+
"columnEnd": 2,
|
26320
|
+
"content": "品牌名称2"
|
26321
|
+
},
|
26322
|
+
{
|
26323
|
+
"rowStart": 2,
|
26324
|
+
"rowEnd": 2,
|
26325
|
+
"columnStart": 3,
|
26326
|
+
"columnEnd": 3,
|
26327
|
+
"content": "商品名称2"
|
26328
|
+
},
|
26329
|
+
{
|
26330
|
+
"rowStart": 2,
|
26331
|
+
"rowEnd": 2,
|
26332
|
+
"columnStart": 4,
|
26333
|
+
"columnEnd": 4,
|
26334
|
+
"content": "5#"
|
26335
|
+
},
|
26336
|
+
{
|
26337
|
+
"rowStart": 2,
|
26338
|
+
"rowEnd": 2,
|
26339
|
+
"columnStart": 5,
|
26340
|
+
"columnEnd": 5,
|
26341
|
+
"content": "20"
|
26342
|
+
},
|
26343
|
+
{
|
26344
|
+
"rowStart": 2,
|
26345
|
+
"rowEnd": 2,
|
26346
|
+
"columnStart": 6,
|
26347
|
+
"columnEnd": 6,
|
26348
|
+
"content": "20"
|
26349
|
+
},
|
26350
|
+
{
|
26351
|
+
"rowStart": 2,
|
26352
|
+
"rowEnd": 2,
|
26353
|
+
"columnStart": 7,
|
26354
|
+
"columnEnd": 7,
|
26355
|
+
"content": "0.400"
|
26356
|
+
},
|
26357
|
+
{
|
26358
|
+
"rowStart": 3,
|
26359
|
+
"rowEnd": 3,
|
26360
|
+
"columnStart": 1,
|
26361
|
+
"columnEnd": 1,
|
26362
|
+
"content": "3"
|
26363
|
+
},
|
26364
|
+
{
|
26365
|
+
"rowStart": 3,
|
26366
|
+
"rowEnd": 3,
|
26367
|
+
"columnStart": 2,
|
26368
|
+
"columnEnd": 2,
|
26369
|
+
"content": "品牌名称3"
|
26370
|
+
},
|
26371
|
+
{
|
26372
|
+
"rowStart": 3,
|
26373
|
+
"rowEnd": 3,
|
26374
|
+
"columnStart": 3,
|
26375
|
+
"columnEnd": 3,
|
26376
|
+
"content": "商品名称3"
|
26377
|
+
},
|
26378
|
+
{
|
26379
|
+
"rowStart": 3,
|
26380
|
+
"rowEnd": 3,
|
26381
|
+
"columnStart": 4,
|
26382
|
+
"columnEnd": 4,
|
26383
|
+
"content": "2#"
|
26384
|
+
},
|
26385
|
+
{
|
26386
|
+
"rowStart": 3,
|
26387
|
+
"rowEnd": 3,
|
26388
|
+
"columnStart": 5,
|
26389
|
+
"columnEnd": 5,
|
26390
|
+
"content": "20"
|
26391
|
+
},
|
26392
|
+
{
|
26393
|
+
"rowStart": 3,
|
26394
|
+
"rowEnd": 3,
|
26395
|
+
"columnStart": 6,
|
26396
|
+
"columnEnd": 6,
|
26397
|
+
"content": "5"
|
26398
|
+
},
|
26399
|
+
{
|
26400
|
+
"rowStart": 3,
|
26401
|
+
"rowEnd": 3,
|
26402
|
+
"columnStart": 7,
|
26403
|
+
"columnEnd": 7,
|
26404
|
+
"content": "0.100"
|
26405
|
+
},
|
26406
|
+
{
|
26407
|
+
"rowStart": 4,
|
26408
|
+
"rowEnd": 4,
|
26409
|
+
"columnStart": 1,
|
26410
|
+
"columnEnd": 1,
|
26411
|
+
"content": "4"
|
26412
|
+
},
|
26413
|
+
{
|
26414
|
+
"rowStart": 4,
|
26415
|
+
"rowEnd": 4,
|
26416
|
+
"columnStart": 2,
|
26417
|
+
"columnEnd": 2,
|
26418
|
+
"content": "品牌名称4"
|
26419
|
+
},
|
26420
|
+
{
|
26421
|
+
"rowStart": 4,
|
26422
|
+
"rowEnd": 4,
|
26423
|
+
"columnStart": 3,
|
26424
|
+
"columnEnd": 3,
|
26425
|
+
"content": "商品名称4"
|
26426
|
+
},
|
26427
|
+
{
|
26428
|
+
"rowStart": 4,
|
26429
|
+
"rowEnd": 4,
|
26430
|
+
"columnStart": 4,
|
26431
|
+
"columnEnd": 4,
|
26432
|
+
"content": "3#"
|
26433
|
+
},
|
26434
|
+
{
|
26435
|
+
"rowStart": 4,
|
26436
|
+
"rowEnd": 4,
|
26437
|
+
"columnStart": 5,
|
26438
|
+
"columnEnd": 5,
|
26439
|
+
"content": "20"
|
26440
|
+
},
|
26441
|
+
{
|
26442
|
+
"rowStart": 4,
|
26443
|
+
"rowEnd": 4,
|
26444
|
+
"columnStart": 6,
|
26445
|
+
"columnEnd": 6,
|
26446
|
+
"content": "10"
|
26447
|
+
},
|
26448
|
+
{
|
26449
|
+
"rowStart": 4,
|
26450
|
+
"rowEnd": 4,
|
26451
|
+
"columnStart": 7,
|
26452
|
+
"columnEnd": 7,
|
26453
|
+
"content": "0.200"
|
26454
|
+
},
|
26455
|
+
{
|
26456
|
+
"rowStart": 5,
|
26457
|
+
"rowEnd": 5,
|
26458
|
+
"columnStart": 1,
|
26459
|
+
"columnEnd": 5,
|
26460
|
+
"content": "合计"
|
26461
|
+
},
|
26462
|
+
{
|
26463
|
+
"rowStart": 5,
|
26464
|
+
"rowEnd": 5,
|
26465
|
+
"columnStart": 6,
|
26466
|
+
"columnEnd": 6,
|
26467
|
+
"content": "85"
|
26468
|
+
},
|
26469
|
+
{
|
26470
|
+
"rowStart": 5,
|
26471
|
+
"rowEnd": 5,
|
26472
|
+
"columnStart": 7,
|
26473
|
+
"columnEnd": 7,
|
26474
|
+
"content": "1.700"
|
26475
|
+
}
|
26476
|
+
]
|
26477
|
+
},
|
26478
|
+
"settings": {
|
26479
|
+
"headerRowDisplay": false
|
26480
|
+
}
|
26481
|
+
}
|
26482
|
+
```
|
26483
|
+
|
26229
26484
|
表格参数说明
|
26230
26485
|
|
26231
26486
|
| 名称 | 类型 | 描述 |
|
@@ -26238,6 +26493,7 @@ class FormField(AbstractModel):
|
|
26238
26493
|
| cells.N.columnEnd | Integer | 单元格坐标:列结束index |
|
26239
26494
|
| cells.N.content | String | 单元格内容,字数不超过100 |
|
26240
26495
|
| cells.N.style | String | 单元格字体风格配置 ,风格配置的json字符串 如: {"font":"黑体","fontSize":12,"color":"#FFFFFF","bold":true,"align":"CENTER"} |
|
26496
|
+
| settings | Object | 表格全局设定。目前支持设置表头不显示,示例:{"headerRowDisplay":false} |
|
26241
26497
|
|
26242
26498
|
表格参数headers说明
|
26243
26499
|
widthPercent Integer 表头单元格列占总表头的比例,例如1:30表示 此列占表头的30%,不填写时列宽度平均拆分;例如2:总2列,某一列填写40,剩余列可以为空,按照60计算。;例如3:总3列,某一列填写30,剩余2列可以为空,分别为(100-30)/2=35
|