Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
asset-distribution
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
data-spider
asset-distribution
Commits
c74e5326
Commit
c74e5326
authored
Aug 21, 2021
by
shihuajun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
路由需求枚举类型
parent
f2c293ff
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
150 additions
and
0 deletions
+150
-0
BusinessType.java
...antgroup/asset/distribution/enums/route/BusinessType.java
+23
-0
FundType.java
...m/quantgroup/asset/distribution/enums/route/FundType.java
+26
-0
OrganizationType.java
...roup/asset/distribution/enums/route/OrganizationType.java
+23
-0
SystemType.java
...quantgroup/asset/distribution/enums/route/SystemType.java
+23
-0
UserLevel.java
.../quantgroup/asset/distribution/enums/route/UserLevel.java
+29
-0
UserTag.java
...om/quantgroup/asset/distribution/enums/route/UserTag.java
+26
-0
No files found.
src/main/java/com/quantgroup/asset/distribution/enums/route/BusinessType.java
0 → 100644
View file @
c74e5326
package
com
.
quantgroup
.
asset
.
distribution
.
enums
.
route
;
import
lombok.Getter
;
/**
* @author shihuajun
* @date 2021/8/21 8:28
* @ describing
*/
@Getter
public
enum
BusinessType
{
CASH
(
"CASH"
,
"VCC业务"
),
VCC
(
"VCC"
,
"VCC业务"
);
private
String
value
;
private
String
desc
;
BusinessType
(
String
value
,
String
desc
){
this
.
value
=
value
;
this
.
desc
=
desc
;
}
}
src/main/java/com/quantgroup/asset/distribution/enums/route/FundType.java
0 → 100644
View file @
c74e5326
package
com
.
quantgroup
.
asset
.
distribution
.
enums
.
route
;
import
lombok.Getter
;
/**
* @author shihuajun
* @date 2021/8/21 8:49
* @ describing
*/
@Getter
public
enum
FundType
{
BANK
(
"BANK"
,
"银行"
),
CONSUMER_FUND
(
"CONSUMER_FUND"
,
"消金"
),
TRUST
(
"TRUST"
,
"信托"
),
INTERBANK
(
"INTER_BANK"
,
"同业"
),
SMALL_LOAN
(
"SMALL_LOAN"
,
"小贷"
);
private
String
value
;
private
String
desc
;
FundType
(
String
value
,
String
desc
){
this
.
value
=
value
;
this
.
desc
=
desc
;
}
}
src/main/java/com/quantgroup/asset/distribution/enums/route/OrganizationType.java
0 → 100644
View file @
c74e5326
package
com
.
quantgroup
.
asset
.
distribution
.
enums
.
route
;
import
lombok.Getter
;
/**
* @author shihuajun
* @date 2021/8/21 8:43
* @ describing
*/
@Getter
public
enum
OrganizationType
{
DIVERSION
(
"DIVERSION"
,
"导流"
),
LOAN
(
"LOAN"
,
"助贷"
);
private
String
value
;
private
String
desc
;
OrganizationType
(
String
value
,
String
desc
){
this
.
value
=
value
;
this
.
desc
=
desc
;
}
}
src/main/java/com/quantgroup/asset/distribution/enums/route/SystemType.java
0 → 100644
View file @
c74e5326
package
com
.
quantgroup
.
asset
.
distribution
.
enums
.
route
;
import
lombok.Getter
;
/**
* @author shihuajun
* @date 2021/8/21 8:49
* @ describing
*/
@Getter
public
enum
SystemType
{
MO
(
"MO"
,
"中台"
),
XYQB
(
"XYQB"
,
"信用钱包"
);
private
String
value
;
private
String
desc
;
SystemType
(
String
value
,
String
desc
){
this
.
value
=
value
;
this
.
desc
=
desc
;
}
}
src/main/java/com/quantgroup/asset/distribution/enums/route/UserLevel.java
0 → 100644
View file @
c74e5326
package
com
.
quantgroup
.
asset
.
distribution
.
enums
.
route
;
import
lombok.Getter
;
/**
* @author shihuajun
* @date 2021/8/21 9:07
* @ describing
*/
@Getter
public
enum
UserLevel
{
LEVEL1
(
"LEVEL1"
,
"等级1"
),
LEVEL2
(
"LEVEL2"
,
"等级2"
),
LEVEL3
(
"LEVEL3"
,
"等级3"
),
LEVEL4
(
"LEVEL4"
,
"等级4"
),
LEVEL5
(
"LEVEL5"
,
"等级5"
),
LEVEL6
(
"LEVEL6"
,
"等级6"
),
LEVEL7
(
"LEVEL7"
,
"等级7"
),
NO_LEVEL
(
"NO_LEVEL"
,
"无等级"
);
private
String
value
;
private
String
desc
;
UserLevel
(
String
value
,
String
desc
){
this
.
value
=
value
;
this
.
desc
=
desc
;
}
}
src/main/java/com/quantgroup/asset/distribution/enums/route/UserTag.java
0 → 100644
View file @
c74e5326
package
com
.
quantgroup
.
asset
.
distribution
.
enums
.
route
;
import
lombok.Getter
;
/**
* @author shihuajun
* @date 2021/8/21 9:07
* @ describing
*/
@Getter
public
enum
UserTag
{
INITIAL_APPLICATION
(
"INITIAL_APPLICATION"
,
"首申"
),
REAPPLICATION
(
"REAPPLICATION"
,
"复申"
),
RE_LOAN
(
"RE_LOAN"
,
"复贷"
),
NO_ABLES
(
"NO_ABLES"
,
"无标签"
),
OTHERS
(
"OTHERS"
,
"其他"
);
private
String
value
;
private
String
desc
;
UserTag
(
String
value
,
String
desc
){
this
.
value
=
value
;
this
.
desc
=
desc
;
}
}
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