eight
2024-10-24 cc61368bd108f36e73dad01e966005147525f5e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.lihu.jh.framework.mybatis.core.enums;
 
import com.baomidou.mybatisplus.annotation.DbType;
 
/**
 * SQL相关常量类
 *
 * @author 芋道源码
 */
public class SqlConstants {
 
    /**
     * 数据库的类型
     */
    public static DbType DB_TYPE;
 
    public static void init(DbType dbType) {
        DB_TYPE = dbType;
    }
 
}