Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
projectplan
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
班迪
projectplan
Merge requests
!103
projectLibrary 模糊查询
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
projectLibrary 模糊查询
feature/fengguangyu
into
develop
Overview
0
Commits
1
Pipelines
1
Changes
3
Closed
冯光宇
requested to merge
feature/fengguangyu
into
develop
4 years ago
Overview
0
Commits
1
Pipelines
1
Changes
3
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
00b8cfc8
1 commit,
4 years ago
3 files
+
48
−
2
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
ServiceSite/src/main/java/com/seasky/projectplan/domain/aggregate/common/StudentEnum.java
0 → 100644
+
40
−
0
Options
package
com.seasky.projectplan.domain.aggregate.common
;
/**
* 学生学费枚举
*
* @author fengguangyu
* @date 2021/06/22
*/
public
enum
StudentEnum
{
BENKESHENG
(
"本科生学费"
,
"0"
),
YANJIUSHENG
(
"研究生学费"
,
"1"
),
LIUXUESHENG
(
"留学生学费"
,
"2"
),
ZHUSUFEI
(
"住宿费"
,
"3"
);
final
String
k
;
final
String
v
;
StudentEnum
(
final
String
k
,
final
String
v
)
{
this
.
k
=
k
;
this
.
v
=
v
;
}
public
String
val
()
{
return
v
;
}
public
String
key
()
{
return
k
;
}
public
static
String
getK
(
String
v
)
{
for
(
StudentEnum
e:
values
())
{
if
(
e
.
val
().
equals
(
v
)){
return
v
;
}
}
return
null
;
}
}