Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cash-loan-flow-boss
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
QG
cash-loan-flow-boss
Commits
e3c41440
Commit
e3c41440
authored
Dec 18, 2019
by
suntao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xyqb productId
parent
3eb842e1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
ChannelConf.java
...roup/cashloanflowboss/api/channel/entity/ChannelConf.java
+1
-1
ChannelConfBaseModel.java
...hloanflowboss/api/channel/model/ChannelConfBaseModel.java
+3
-0
ChannelConfUtil.java
...up/cashloanflowboss/api/channel/util/ChannelConfUtil.java
+2
-1
No files found.
src/main/java/cn/quantgroup/cashloanflowboss/api/channel/entity/ChannelConf.java
View file @
e3c41440
...
...
@@ -51,7 +51,7 @@ public class ChannelConf extends Primary {
private
Integer
p2pFundId
;
/**
*
p2p资方i
d
*
xyqb productI
d
*/
@Column
(
name
=
"biz_type"
)
private
Integer
bizType
;
...
...
src/main/java/cn/quantgroup/cashloanflowboss/api/channel/model/ChannelConfBaseModel.java
View file @
e3c41440
...
...
@@ -18,6 +18,9 @@ public class ChannelConfBaseModel {
private
String
env
;
private
Integer
fundId
;
private
Integer
p2pFundId
;
/**
* 对应productId
*/
private
Integer
bizType
;
private
String
aesKey
;
private
String
md5Key
;
...
...
src/main/java/cn/quantgroup/cashloanflowboss/api/channel/util/ChannelConfUtil.java
View file @
e3c41440
...
...
@@ -77,6 +77,7 @@ public class ChannelConfUtil {
channelConfiguration
.
setMd5Key
(
basicInfo
.
getMd5Key
());
channelConfiguration
.
setSpiderCenterChannelCode
(
basicInfo
.
getRiskCode
());
channelConfiguration
.
setSpiderCenterMerchantChannelCode
(
basicInfo
.
getAuthCode
());
channelConfiguration
.
setXyqbProductId
(
basicInfo
.
getBizType
()+
""
);
return
channelConfiguration
;
}
...
...
@@ -219,7 +220,7 @@ public class ChannelConfUtil {
channelConfBaseModel
.
setEnv
(
""
);
channelConfBaseModel
.
setFundId
(
0
);
channelConfBaseModel
.
setP2pFundId
(
0
);
channelConfBaseModel
.
setBizType
(
0
);
channelConfBaseModel
.
setBizType
(
Integer
.
valueOf
(
channelConfiguration
.
getXyqbProductId
())
);
channelConfBaseModel
.
setAesKey
(
channelConfiguration
.
getAesKey
());
channelConfBaseModel
.
setMd5Key
(
channelConfiguration
.
getMd5Key
());
channelConfBaseModel
.
setAuthCode
(
channelConfiguration
.
getSpiderCenterMerchantChannelCode
());
...
...
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