package com.yupi.springbootinit.constant; /** * 通用常量 * * @author 程序员鱼皮 * @from 编程导航知识星球 */ public interface CommonConstant { /** * 升序 */ String SORT_ORDER_ASC = "ascend"; /** * 降序 */ String SORT_ORDER_DESC = " descend"; }