记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董敬伟
liquidnet-bus-v1
Commits
39c6ed07
Commit
39c6ed07
authored
May 20, 2022
by
anjiabin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改一个身份证只能开通一个数字账户
parent
26291983
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
GalaxyErrorEnum.java
...om/liquidnet/service/galaxy/constant/GalaxyErrorEnum.java
+2
-1
ZxinUserCommonBiz.java
...net/service/galaxy/router/zxin/biz/ZxinUserCommonBiz.java
+2
-1
No files found.
liquidnet-bus-api/liquidnet-service-galaxy-api/src/main/java/com/liquidnet/service/galaxy/constant/GalaxyErrorEnum.java
View file @
39c6ed07
...
...
@@ -32,7 +32,8 @@ public enum GalaxyErrorEnum {
NFT_PUBLISH_AND_BUY_QUERY_FAIL
(
"NFT0010019"
,
"NFT发行和购买结果查询失败!"
),
NFT_QUERY_FAIL_ORDER_NOT_EXIST
(
"NFT0010020"
,
"NFT订单不存在!"
),
NFT_QUERY_FAIL_NFT_NOT_EXIST
(
"NFT0010021"
,
"NFT信息查询不存在!"
),
NFT_QUERY_FAIL_SERIES_NOT_EXIST
(
"NFT0010022"
,
"系列信息查询不存在!"
);
NFT_QUERY_FAIL_SERIES_NOT_EXIST
(
"NFT0010022"
,
"系列信息查询不存在!"
),
NFT_USER_HAS_OPEN_ACCOUNT
(
"NFT0010023"
,
"用户已经开通过数字账户!"
);
private
String
code
;
...
...
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-common/src/main/java/com/liquidnet/service/galaxy/router/zxin/biz/ZxinUserCommonBiz.java
View file @
39c6ed07
...
...
@@ -18,6 +18,7 @@ import com.liquidnet.service.base.SqlMapping;
import
com.liquidnet.service.base.constant.MQConst
;
import
com.liquidnet.service.galaxy.constant.GalaxyConstant
;
import
com.liquidnet.service.galaxy.constant.GalaxyEnum
;
import
com.liquidnet.service.galaxy.constant.GalaxyErrorEnum
;
import
com.liquidnet.service.galaxy.dto.bo.GalaxyUserInfoBo
;
import
com.liquidnet.service.galaxy.dto.param.GalaxyUserRegisterReqDto
;
import
com.liquidnet.service.galaxy.dto.param.GalaxyUserRegisterRespDto
;
...
...
@@ -177,7 +178,7 @@ public class ZxinUserCommonBiz {
if
(
isRealNameAuthSuccess
){
String
blockAddress
=
dataUtils
.
getGalaxyUserInfoByIdCardNo
(
reqDto
.
getRouterType
(),
idCard
);
if
(
StringUtil
.
isNotEmpty
(
blockAddress
)){
throw
new
GalaxyNftUserException
(
nft003Resp
.
getCode
(),
nft003Resp
.
getMessage
());
throw
new
GalaxyNftUserException
(
GalaxyErrorEnum
.
NFT_USER_HAS_OPEN_ACCOUNT
.
getCode
(),
GalaxyErrorEnum
.
NFT_USER_HAS_OPEN_ACCOUNT
.
getMessage
());
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment