Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
guns-vip
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenjunxiong
guns-vip
Commits
5edc1033
Commit
5edc1033
authored
Feb 22, 2018
by
stylefeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删掉没用的
parent
2e43830c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
37 deletions
+0
-37
guns-admin/src/main/java/com/stylefeng/guns/common/constant/enums/Status.java
+0
-37
No files found.
guns-admin/src/main/java/com/stylefeng/guns/common/constant/enums/Status.java
deleted
100644 → 0
View file @
2e43830c
package
com
.
stylefeng
.
guns
.
common
.
constant
.
enums
;
import
com.baomidou.mybatisplus.enums.IEnum
;
import
java.io.Serializable
;
/**
* 通用的业务状态
*
* @author zhfish
*/
public
enum
Status
implements
IEnum
{
未启用
(
0
),
启用
(
1
);
private
int
value
;
Status
(
final
int
value
)
{
this
.
value
=
value
;
}
@Override
public
Serializable
getValue
()
{
return
this
.
value
;
}
@Override
public
String
toString
(){
switch
(
this
.
value
)
{
case
0
:
return
"未启用"
;
case
1
:
return
"启用"
;
}
return
"未启用"
;
}
}
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