Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-store
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
base_platform_enterprise
gic-store
Commits
4e1f2b92
Commit
4e1f2b92
authored
Jun 26, 2019
by
zhiwj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
排序类型
parent
ab0a5a03
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
MoveType.java
...store-api/src/main/java/com/gic/store/utils/MoveType.java
+29
-0
No files found.
gic-store-api/src/main/java/com/gic/store/utils/MoveType.java
0 → 100644
View file @
4e1f2b92
package
com
.
gic
.
store
.
utils
;
/**
* @author zhiwj
* @date 2019/6/26
*/
public
enum
MoveType
{
// 排序类型
MOVE_UP
(
1
,
"上移"
),
MOVE_DOWN
(
2
,
"下移"
),
TOPPING
(
3
,
"置顶"
),
BOTTOM
(
4
,
"置底"
);
private
Integer
code
;
private
String
description
;
MoveType
(
Integer
code
,
String
description
)
{
this
.
code
=
code
;
this
.
description
=
description
;
}
public
Integer
getCode
()
{
return
code
;
}
public
String
getDescription
()
{
return
description
;
}
}
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