第一步版

This commit is contained in:
2025-07-22 11:30:53 +08:00
commit 7bf8058c39
45 changed files with 2154 additions and 0 deletions

View File

@ -0,0 +1,18 @@
package org.traceability.contant;
/**
* 通用常量
*/
public interface CommonConstant {
/**
* 升序
*/
String SORT_ORDER_ASC = "ascend";
/**
* 降序
*/
String SORT_ORDER_DESC = " descend";
}