From 2e8861516e7b4c6784a5791e65bdd1f3fc64fa89 Mon Sep 17 00:00:00 2001 From: jsyzchen Date: Thu, 29 Apr 2021 17:09:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Drequest=5Fid=E5=8F=AF?= =?UTF-8?q?=E4=BB=A5=E4=BC=9A=E8=B6=85=E8=BF=87int64=E5=A4=A7=E5=B0=8F?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- conf/conf.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 773026a..5386379 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ### 使用Go mod 在您的项目中的`go.mod`文件内添加这行代码 ```bash -require github.com/jsyzchen/pan v0.0.5 +require github.com/jsyzchen/pan v0.0.6 ``` 并在项目中引入`github.com/jsyzchen/pan` ```go diff --git a/conf/conf.go b/conf/conf.go index d27584e..b88b6a4 100644 --- a/conf/conf.go +++ b/conf/conf.go @@ -3,13 +3,13 @@ package conf type PcsResponseBase struct { ErrorCode int `json:"error_code"` ErrorMsg string `json:"error_msg"` - RequestID int `json:"request_id"` + RequestID uint64 `json:"request_id"` } type CloudDiskResponseBase struct { ErrorCode int `json:"errno"` ErrorMsg string `json:"errmsg"` - RequestID int `json:"request_id"` + RequestID uint64 `json:"request_id"` } type TestDataConfig struct { @@ -26,7 +26,7 @@ type TestDataConfig struct { TranscodingType string } -const Version = "0.0.5" +const Version = "0.0.6" const ( BaiduOpenApiDomain = "https://openapi.baidu.com"