Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
本
本级财政预算项目管理系统
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
Package Registry
Operate
Environments
Terraform modules
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
JAVA
本级财政预算项目管理系统
Merge requests
!24
Feature/zhoushiqi
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/zhoushiqi
feature/zhoushiqi
into
develop
Overview
0
Commits
4
Pipelines
1
Changes
17
Merged
周士琪
requested to merge
feature/zhoushiqi
into
develop
2 years ago
Overview
0
Commits
4
Pipelines
1
Changes
17
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
72f5a334
4 commits,
2 years ago
17 files
+
911
−
34
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
Search (e.g. *.vue) (Ctrl+P)
ServiceSite/facade/src/main/java/com/seasky/budget/enums/EntrustmentStateEnum.java
0 → 100644
+
40
−
0
Options
package
com.seasky.budget.enums
;
public
enum
EntrustmentStateEnum
{
Aduiting
(
1
,
"已生成,待审核"
),
CW_Back
(
2
,
"财务处退回"
),
Wait_CZ_Claim
(
3
,
"待财资中心认领"
),
Wait_Exam
(
4
,
"待预审"
),
Wait_CZ_Deal
(
5
,
"待财资中心受理,可打印"
),
CZ_Accepted
(
6
,
"财资中心已受理"
),
CZ_Back
(
7
,
"财资中心退回"
),
Cancel
(
8
,
"已作废"
),
Review_Complete
(
9
,
"评审完成"
);
private
String
name
;
private
int
key
;
public
String
getName
()
{
return
name
;
}
public
int
getKey
()
{
return
key
;
}
EntrustmentStateEnum
(
int
key
,
String
name
)
{
this
.
name
=
name
;
this
.
key
=
key
;
}
public
static
String
queryNameByKey
(
int
key
)
{
for
(
ProjectStateEnum
projectState
:
ProjectStateEnum
.
values
())
{
if
(
projectState
.
getKey
()
==
key
)
{
return
projectState
.
getName
();
}
}
return
""
;
}
}