Files
tkcrawl-client/src/main/java/com/yupi/springbootinit/constant/CommonConstant.java
2025-06-11 14:45:40 +08:00

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";
}