更新 sdk版本 并添加 ErrorMsg字符安

This commit is contained in:
蒋海成 2024-12-12 11:46:35 +08:00
parent f3cacf2fbd
commit 9e1eda9e4b
6 changed files with 487 additions and 451 deletions

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="SwUserDefinedSpecifications">
<option name="specTypeByUrl">
<map />
</option>
</component>
</project>

2
go.mod
View File

@ -4,7 +4,7 @@ go 1.20
require ( require (
dubbo.apache.org/dubbo-go/v3 v3.0.5 dubbo.apache.org/dubbo-go/v3 v3.0.5
github.com/antchain-openapi-sdk-go/bccr v1.19.2 github.com/antchain-openapi-sdk-go/bccr v1.19.22
github.com/bwmarrin/snowflake v0.3.0 github.com/bwmarrin/snowflake v0.3.0
github.com/dubbogo/grpc-go v1.42.10 github.com/dubbogo/grpc-go v1.42.10
github.com/dubbogo/triple v1.2.2-rc2 github.com/dubbogo/triple v1.2.2-rc2

1
go.sum
View File

@ -101,6 +101,7 @@ github.com/antchain-openapi-sdk-go/antchain-util v0.0.7 h1:aa6GLaNNE3HryG71Kxjza
github.com/antchain-openapi-sdk-go/antchain-util v0.0.7/go.mod h1:pi99Uu97pcsfyUNaaMcABSQS3HjuY+066s/3iDgVJSk= github.com/antchain-openapi-sdk-go/antchain-util v0.0.7/go.mod h1:pi99Uu97pcsfyUNaaMcABSQS3HjuY+066s/3iDgVJSk=
github.com/antchain-openapi-sdk-go/bccr v1.19.2 h1:38TM2NSpvPPXcJM0j3vvNb14i2fpGqfyslAdmsPHM8k= github.com/antchain-openapi-sdk-go/bccr v1.19.2 h1:38TM2NSpvPPXcJM0j3vvNb14i2fpGqfyslAdmsPHM8k=
github.com/antchain-openapi-sdk-go/bccr v1.19.2/go.mod h1:ALgEJuJDenNJdGrcBMJ1zoyla8KvimZVmtofHAf2ouY= github.com/antchain-openapi-sdk-go/bccr v1.19.2/go.mod h1:ALgEJuJDenNJdGrcBMJ1zoyla8KvimZVmtofHAf2ouY=
github.com/antchain-openapi-sdk-go/bccr v1.19.22/go.mod h1:ALgEJuJDenNJdGrcBMJ1zoyla8KvimZVmtofHAf2ouY=
github.com/antchfx/htmlquery v1.2.3 h1:sP3NFDneHx2stfNXCKbhHFo8XgNjCACnU/4AO5gWz6M= github.com/antchfx/htmlquery v1.2.3 h1:sP3NFDneHx2stfNXCKbhHFo8XgNjCACnU/4AO5gWz6M=
github.com/antchfx/htmlquery v1.2.3/go.mod h1:B0ABL+F5irhhMWg54ymEZinzMSi0Kt3I2if0BLYa3V0= github.com/antchfx/htmlquery v1.2.3/go.mod h1:B0ABL+F5irhhMWg54ymEZinzMSi0Kt3I2if0BLYa3V0=
github.com/antchfx/xmlquery v1.2.4 h1:T/SH1bYdzdjTMoz2RgsfVKbM5uWh3gjDYYepFqQmFv4= github.com/antchfx/xmlquery v1.2.4 h1:T/SH1bYdzdjTMoz2RgsfVKbM5uWh3gjDYYepFqQmFv4=

View File

@ -149,6 +149,7 @@ message CreateDciPreregistrationResponse {
string resultCode = 2 [json_name = "resultCode"]; string resultCode = 2 [json_name = "resultCode"];
string resultMsg = 3 [json_name = "resultMsg"]; string resultMsg = 3 [json_name = "resultMsg"];
string reqMsgId = 4 [json_name = "reqMsgId"]; string reqMsgId = 4 [json_name = "reqMsgId"];
string errorMsg = 5 [json_name = "errorMsg"];
} }
// Dci work // Dci work
@ -225,6 +226,7 @@ message CreateDciRegistrationResponse {
string resultCode = 2 [json_name = "resultCode"]; string resultCode = 2 [json_name = "resultCode"];
string resultMsg = 3 [json_name = "resultMsg"]; string resultMsg = 3 [json_name = "resultMsg"];
string reqMsgId = 4 [json_name = "reqMsgId"]; string reqMsgId = 4 [json_name = "reqMsgId"];
string errorMsg = 5 [json_name = "errorMsg"];
} }
// //
@ -263,6 +265,7 @@ message GetDciPayUrlResponse {
string resultCode = 14 [json_name = "resultCode"]; string resultCode = 14 [json_name = "resultCode"];
string resultMsg = 15 [json_name = "resultMsg"]; string resultMsg = 15 [json_name = "resultMsg"];
string reqMsgId = 16 [json_name = "reqMsgId"]; string reqMsgId = 16 [json_name = "reqMsgId"];
string errorMsg = 17 [json_name = "errorMsg"];
} }
// //
@ -306,6 +309,7 @@ message RetryDciRegistrationResponse {
string resultCode = 1 [json_name = "resultCode"]; string resultCode = 1 [json_name = "resultCode"];
string resultMsg = 2 [json_name = "resultMsg"]; string resultMsg = 2 [json_name = "resultMsg"];
string reqMsgId = 3 [json_name = "reqMsgId"]; string reqMsgId = 3 [json_name = "reqMsgId"];
string errorMsg = 4 [json_name = "errorMsg"];
} }
// //

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
// Code generated by protoc-gen-go-triple. DO NOT EDIT. // Code generated by protoc-gen-go-triple. DO NOT EDIT.
// versions: // versions:
// - protoc-gen-go-triple v1.0.5 // - protoc-gen-go-triple v1.0.5
// - protoc v3.21.4 // - protoc v5.29.0--rc3
// source: pb/dci.proto // source: pb/dci.proto
package dci package dci