22 lines
384 B
Java
22 lines
384 B
Java
package com.yupi.springbootinit.constant;
|
|
|
|
/**
|
|
* 通用常量
|
|
*
|
|
* @author <a href="https://github.com/liyupi">程序员鱼皮</a>
|
|
* @from <a href="https://yupi.icu">编程导航知识星球</a>
|
|
*/
|
|
public interface CommonConstant {
|
|
|
|
/**
|
|
* 升序
|
|
*/
|
|
String SORT_ORDER_ASC = "ascend";
|
|
|
|
/**
|
|
* 降序
|
|
*/
|
|
String SORT_ORDER_DESC = " descend";
|
|
|
|
}
|