dashboard
repositories
filestore
activity
search
login
admin
/
server
forked from
server
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
新的git
zbb378@sohu.com
2024-11-04
b2bad51be3c8d3e78d7f81a19415faeac2d0297c
[~admin/server.git]
/
src
/
main
/
java
/
com
/
nova
/
sankuai
/
infra
/
constants
/
OrderType.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.nova.sankuai.infra.constants;
/**
* 排序方式
*
* @author weikangdi
* @since
*/
public enum OrderType {
/** 正序 */
asc,
/** 倒序 */
desc;
}