@@ -135,10 +135,10 @@ public static class SqlList extends TeaModel {
135
135
private Double avgGetPlanTime ;
136
136
137
137
@ com .aliyun .core .annotation .NameInMap ("AvgLogicalReads" )
138
- private Float avgLogicalReads ;
138
+ private Double avgLogicalReads ;
139
139
140
140
@ com .aliyun .core .annotation .NameInMap ("AvgRetryCount" )
141
- private Float avgRetryCount ;
141
+ private Double avgRetryCount ;
142
142
143
143
@ com .aliyun .core .annotation .NameInMap ("CpuTime" )
144
144
private Double cpuTime ;
@@ -174,10 +174,10 @@ public static class SqlList extends TeaModel {
174
174
private Double sumDbTime ;
175
175
176
176
@ com .aliyun .core .annotation .NameInMap ("SumElapsedTime" )
177
- private String sumElapsedTime ;
177
+ private Double sumElapsedTime ;
178
178
179
179
@ com .aliyun .core .annotation .NameInMap ("SumRetryCount" )
180
- private Float sumRetryCount ;
180
+ private Double sumRetryCount ;
181
181
182
182
@ com .aliyun .core .annotation .NameInMap ("UserName" )
183
183
private String userName ;
@@ -244,14 +244,14 @@ public Double getAvgGetPlanTime() {
244
244
/**
245
245
* @return avgLogicalReads
246
246
*/
247
- public Float getAvgLogicalReads () {
247
+ public Double getAvgLogicalReads () {
248
248
return this .avgLogicalReads ;
249
249
}
250
250
251
251
/**
252
252
* @return avgRetryCount
253
253
*/
254
- public Float getAvgRetryCount () {
254
+ public Double getAvgRetryCount () {
255
255
return this .avgRetryCount ;
256
256
}
257
257
@@ -335,14 +335,14 @@ public Double getSumDbTime() {
335
335
/**
336
336
* @return sumElapsedTime
337
337
*/
338
- public String getSumElapsedTime () {
338
+ public Double getSumElapsedTime () {
339
339
return this .sumElapsedTime ;
340
340
}
341
341
342
342
/**
343
343
* @return sumRetryCount
344
344
*/
345
- public Float getSumRetryCount () {
345
+ public Double getSumRetryCount () {
346
346
return this .sumRetryCount ;
347
347
}
348
348
@@ -358,8 +358,8 @@ public static final class Builder {
358
358
private Double avgDbTime ;
359
359
private Double avgElapsedTime ;
360
360
private Double avgGetPlanTime ;
361
- private Float avgLogicalReads ;
362
- private Float avgRetryCount ;
361
+ private Double avgLogicalReads ;
362
+ private Double avgRetryCount ;
363
363
private Double cpuTime ;
364
364
private String dbName ;
365
365
private java .util .List <String > diagTypes ;
@@ -371,8 +371,8 @@ public static final class Builder {
371
371
private String sqlTextShort ;
372
372
private String suggestion ;
373
373
private Double sumDbTime ;
374
- private String sumElapsedTime ;
375
- private Float sumRetryCount ;
374
+ private Double sumElapsedTime ;
375
+ private Double sumRetryCount ;
376
376
private String userName ;
377
377
378
378
private Builder () {
@@ -451,7 +451,7 @@ public Builder avgGetPlanTime(Double avgGetPlanTime) {
451
451
* <strong>example:</strong>
452
452
* <p>25</p>
453
453
*/
454
- public Builder avgLogicalReads (Float avgLogicalReads ) {
454
+ public Builder avgLogicalReads (Double avgLogicalReads ) {
455
455
this .avgLogicalReads = avgLogicalReads ;
456
456
return this ;
457
457
}
@@ -462,7 +462,7 @@ public Builder avgLogicalReads(Float avgLogicalReads) {
462
462
* <strong>example:</strong>
463
463
* <p>4</p>
464
464
*/
465
- public Builder avgRetryCount (Float avgRetryCount ) {
465
+ public Builder avgRetryCount (Double avgRetryCount ) {
466
466
this .avgRetryCount = avgRetryCount ;
467
467
return this ;
468
468
}
@@ -596,7 +596,7 @@ public Builder sumDbTime(Double sumDbTime) {
596
596
* <strong>example:</strong>
597
597
* <p>11452126.36</p>
598
598
*/
599
- public Builder sumElapsedTime (String sumElapsedTime ) {
599
+ public Builder sumElapsedTime (Double sumElapsedTime ) {
600
600
this .sumElapsedTime = sumElapsedTime ;
601
601
return this ;
602
602
}
@@ -607,7 +607,7 @@ public Builder sumElapsedTime(String sumElapsedTime) {
607
607
* <strong>example:</strong>
608
608
* <p>6</p>
609
609
*/
610
- public Builder sumRetryCount (Float sumRetryCount ) {
610
+ public Builder sumRetryCount (Double sumRetryCount ) {
611
611
this .sumRetryCount = sumRetryCount ;
612
612
return this ;
613
613
}
@@ -650,10 +650,10 @@ public static class Data extends TeaModel {
650
650
private Double avgGetPlanTime ;
651
651
652
652
@ com .aliyun .core .annotation .NameInMap ("AvgLogicalReads" )
653
- private Float avgLogicalReads ;
653
+ private Double avgLogicalReads ;
654
654
655
655
@ com .aliyun .core .annotation .NameInMap ("AvgRetryCount" )
656
- private Float avgRetryCount ;
656
+ private Double avgRetryCount ;
657
657
658
658
@ com .aliyun .core .annotation .NameInMap ("CpuTime" )
659
659
private Double cpuTime ;
@@ -695,10 +695,10 @@ public static class Data extends TeaModel {
695
695
private Double sumDbTime ;
696
696
697
697
@ com .aliyun .core .annotation .NameInMap ("SumElapsedTime" )
698
- private String sumElapsedTime ;
698
+ private Double sumElapsedTime ;
699
699
700
700
@ com .aliyun .core .annotation .NameInMap ("SumRetryCount" )
701
- private Float sumRetryCount ;
701
+ private Double sumRetryCount ;
702
702
703
703
@ com .aliyun .core .annotation .NameInMap ("UserName" )
704
704
private String userName ;
@@ -767,14 +767,14 @@ public Double getAvgGetPlanTime() {
767
767
/**
768
768
* @return avgLogicalReads
769
769
*/
770
- public Float getAvgLogicalReads () {
770
+ public Double getAvgLogicalReads () {
771
771
return this .avgLogicalReads ;
772
772
}
773
773
774
774
/**
775
775
* @return avgRetryCount
776
776
*/
777
- public Float getAvgRetryCount () {
777
+ public Double getAvgRetryCount () {
778
778
return this .avgRetryCount ;
779
779
}
780
780
@@ -872,14 +872,14 @@ public Double getSumDbTime() {
872
872
/**
873
873
* @return sumElapsedTime
874
874
*/
875
- public String getSumElapsedTime () {
875
+ public Double getSumElapsedTime () {
876
876
return this .sumElapsedTime ;
877
877
}
878
878
879
879
/**
880
880
* @return sumRetryCount
881
881
*/
882
- public Float getSumRetryCount () {
882
+ public Double getSumRetryCount () {
883
883
return this .sumRetryCount ;
884
884
}
885
885
@@ -895,8 +895,8 @@ public static final class Builder {
895
895
private Double avgDbTime ;
896
896
private Double avgElapsedTime ;
897
897
private Double avgGetPlanTime ;
898
- private Float avgLogicalReads ;
899
- private Float avgRetryCount ;
898
+ private Double avgLogicalReads ;
899
+ private Double avgRetryCount ;
900
900
private Double cpuTime ;
901
901
private String dbName ;
902
902
private java .util .List <String > diagTypes ;
@@ -910,8 +910,8 @@ public static final class Builder {
910
910
private String sqlTextShort ;
911
911
private String suggestion ;
912
912
private Double sumDbTime ;
913
- private String sumElapsedTime ;
914
- private Float sumRetryCount ;
913
+ private Double sumElapsedTime ;
914
+ private Double sumRetryCount ;
915
915
private String userName ;
916
916
917
917
private Builder () {
@@ -992,7 +992,7 @@ public Builder avgGetPlanTime(Double avgGetPlanTime) {
992
992
* <strong>example:</strong>
993
993
* <p>25</p>
994
994
*/
995
- public Builder avgLogicalReads (Float avgLogicalReads ) {
995
+ public Builder avgLogicalReads (Double avgLogicalReads ) {
996
996
this .avgLogicalReads = avgLogicalReads ;
997
997
return this ;
998
998
}
@@ -1003,7 +1003,7 @@ public Builder avgLogicalReads(Float avgLogicalReads) {
1003
1003
* <strong>example:</strong>
1004
1004
* <p>4</p>
1005
1005
*/
1006
- public Builder avgRetryCount (Float avgRetryCount ) {
1006
+ public Builder avgRetryCount (Double avgRetryCount ) {
1007
1007
this .avgRetryCount = avgRetryCount ;
1008
1008
return this ;
1009
1009
}
@@ -1150,7 +1150,7 @@ public Builder sumDbTime(Double sumDbTime) {
1150
1150
* <strong>example:</strong>
1151
1151
* <p>11452126.36</p>
1152
1152
*/
1153
- public Builder sumElapsedTime (String sumElapsedTime ) {
1153
+ public Builder sumElapsedTime (Double sumElapsedTime ) {
1154
1154
this .sumElapsedTime = sumElapsedTime ;
1155
1155
return this ;
1156
1156
}
@@ -1161,7 +1161,7 @@ public Builder sumElapsedTime(String sumElapsedTime) {
1161
1161
* <strong>example:</strong>
1162
1162
* <p>6</p>
1163
1163
*/
1164
- public Builder sumRetryCount (Float sumRetryCount ) {
1164
+ public Builder sumRetryCount (Double sumRetryCount ) {
1165
1165
this .sumRetryCount = sumRetryCount ;
1166
1166
return this ;
1167
1167
}
0 commit comments