Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(dts): percent data type convert panic when value is negative #259

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tencentcloud/dts/v20211206/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -5767,7 +5767,7 @@ type ProcessProgress struct {

// 进度信息
// 注意:此字段可能返回 null,表示取不到有效值。
Percent *uint64 `json:"Percent,omitnil,omitempty" name:"Percent"`
Percent *int64 `json:"Percent,omitnil,omitempty" name:"Percent"`

// 总的步骤数
// 注意:此字段可能返回 null,表示取不到有效值。
Expand Down Expand Up @@ -6816,7 +6816,7 @@ type StepDetailInfo struct {

// 执行进度
// 注意:此字段可能返回 null,表示取不到有效值。
Percent *uint64 `json:"Percent,omitnil,omitempty" name:"Percent"`
Percent *int64 `json:"Percent,omitnil,omitempty" name:"Percent"`

// 错误信息
// 注意:此字段可能返回 null,表示取不到有效值。
Expand Down Expand Up @@ -7076,7 +7076,7 @@ type SubscribeCheckStepInfo struct {

// 当前步骤进度
// 注意:此字段可能返回 null,表示取不到有效值。
Percent *uint64 `json:"Percent,omitnil,omitempty" name:"Percent"`
Percent *int64 `json:"Percent,omitnil,omitempty" name:"Percent"`

// 错误提示
// 注意:此字段可能返回 null,表示取不到有效值。
Expand Down