初始化

This commit is contained in:
2022-06-21 20:47:46 +08:00
parent b666a24a98
commit 59da3376c1
1246 changed files with 129600 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.njcn.db.constant;
/**
* @author hongawen
* @version 1.0.0
* @date 2021年12月20日 16:08
*/
public interface DbConstant {
/**
* 正序标识
*/
String ASC = "asc";
/**
* 倒序标识
*/
String DESC = "desc";
}