Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
windows
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
zhanhai
windows
Commits
95874fa8
Commit
95874fa8
authored
Oct 30, 2023
by
张庆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增MQ
parent
c26d5508
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
CreditListener.java
src/main/java/com/jqtx/windows/common/mq/CreditListener.java
+9
-6
No files found.
src/main/java/com/jqtx/windows/common/mq/CreditListener.java
View file @
95874fa8
...
...
@@ -13,15 +13,18 @@ import com.jqtx.infrastructure.mq.starter.annotation.MQConsumerComponent;
import
com.jqtx.infrastructure.oss.starter.config.OssUtils
;
import
com.jqtx.infrastructure.oss.starter.properties.OssProperties
;
import
com.jqtx.infrastructure.util.LoanMobileAESUtil
;
import
com.jqtx.windows.common.exception.BizException
;
import
com.jqtx.windows.component.CreditComponent
;
import
com.jqtx.windows.component.enums.ZNEduEnum
;
import
com.jqtx.windows.component.enums.ZNInComeEnum
;
import
com.jqtx.windows.component.enums.ZNMarryEnum
;
import
com.jqtx.windows.component.enums.ZNRelationEnum
;
import
com.jqtx.windows.component.model.CreditModel
;
import
com.jqtx.windows.infrastructure.enums.ExceptionCodeEnum
;
import
com.jqtx.windows.infrastructure.feign.IClientFeignService
;
import
com.jqtx.windows.infrastructure.feign.IWakandaFeignService
;
import
com.jqtx.windows.infrastructure.feign.enums.ProductNameEnum
;
import
com.jqtx.windows.infrastructure.feign.model.client.ClientFeignModel
;
import
com.jqtx.windows.infrastructure.feign.model.wakanda.*
;
import
com.jqtx.windows.web.request.CreditSubmitRequest
;
import
com.jqtx.windows.web.response.JsonResult
;
...
...
@@ -164,12 +167,12 @@ public class CreditListener extends AbstractMQConsumerHandler<CreditSubmitReques
infoModel
.
setIdentifyInfo
(
idModel
);
infoModel
.
setBasicInfo
(
basicModel
);
infoModel
.
setContinuedLoan
(
false
);
//
ClientFeignModel clientFeignModel = new ClientFeignModel(infoModel.getBasicInfo().getIdCard(), infoModel.getBasicInfo().getName());
//
JsonResult<String> clientResult = iClientFeignService.getClientNo(clientFeignModel);
//
if (!clientResult.isSuccess()) {
//
throw new BizException(ExceptionCodeEnum.SYSTEM_REMOTE_ERROR);
//
}
String
clientId
=
IdUtil
.
simpleUUID
().
toString
();
ClientFeignModel
clientFeignModel
=
new
ClientFeignModel
(
infoModel
.
getBasicInfo
().
getIdCard
(),
infoModel
.
getBasicInfo
().
getName
());
JsonResult
<
String
>
clientResult
=
iClientFeignService
.
getClientNo
(
clientFeignModel
);
if
(!
clientResult
.
isSuccess
())
{
throw
new
BizException
(
ExceptionCodeEnum
.
SYSTEM_REMOTE_ERROR
);
}
String
clientId
=
clientResult
.
getResult
();
infoModel
.
setClientNo
(
clientId
);
infoModel
.
setOrderNo
(
request
.
getOrderNo
());
...
...
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