19 lines
241 B
Java
19 lines
241 B
Java
|
package org.traceability.contant;
|
||
|
|
||
|
/**
|
||
|
* 通用常量
|
||
|
*/
|
||
|
public interface CommonConstant {
|
||
|
|
||
|
/**
|
||
|
* 升序
|
||
|
*/
|
||
|
String SORT_ORDER_ASC = "ascend";
|
||
|
|
||
|
/**
|
||
|
* 降序
|
||
|
*/
|
||
|
String SORT_ORDER_DESC = " descend";
|
||
|
|
||
|
}
|