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
0c4bd0da
Commit
0c4bd0da
authored
1 year ago
by
liuzicheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
初始化项目
parent
88e9a548
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
CreditSubmitCommand.java
...in/java/com/jqtx/windows/command/CreditSubmitCommand.java
+1
-1
CommandProxy.java
...in/java/com/jqtx/windows/common/factory/CommandProxy.java
+0
-1
No files found.
src/main/java/com/jqtx/windows/command/CreditSubmitCommand.java
View file @
0c4bd0da
...
...
@@ -57,13 +57,13 @@ public class CreditSubmitCommand extends AbstractCommand {
@Override
public
JsonResult
execute
()
{
String
requestBody
=
RuntimeContextHolder
.
currentRuntimeContext
().
getRequestBody
();
log
.
info
(
"----------->{}"
,
requestBody
);
CreditSubmitRequest
request
=
JSON
.
parseObject
(
requestBody
,
CreditSubmitRequest
.
class
);
CreditModel
order
=
creditComponent
.
getByOrderNo
(
request
.
getOrderNo
());
if
(
ObjectUtil
.
isNotNull
(
order
)){
return
JsonResult
.
success
();
}
CreditModel
insert
=
new
CreditModel
();
insert
.
setOrderNo
(
request
.
getOrderNo
());
this
.
convert
(
request
,
insert
);
ClientInfoModel
infoModel
=
this
.
convertCredit
(
request
,
insert
);
JsonResult
result
=
iWakandaFeignService
.
clientCredit
(
infoModel
);
...
...
This diff is collapsed.
Click to expand it.
src/main/java/com/jqtx/windows/common/factory/CommandProxy.java
View file @
0c4bd0da
...
...
@@ -48,7 +48,6 @@ public class CommandProxy {
String
requestBody
=
jsonObject
.
getString
(
"content"
);
String
sign
=
jsonObject
.
getString
(
"sign"
);
String
appId
=
jsonObject
.
getString
(
"appId"
);
log
.
info
(
"22222222222:{}"
,
requestBody
);
String
decodeBody
=
AbcRsaUtil
.
decodeParam
(
requestBody
,
sign
,
YyPpivateKey
,
publicKey
);
if
(
StringUtils
.
isBlank
(
decodeBody
)){
return
JsonResult
.
error
(
ExceptionCodeEnum
.
SYSTEM_AUTH_ERROR
);
...
...
This diff is collapsed.
Click to expand it.
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