eight
2025-03-31 030979c08b23b917a942eed09f0d6a9134c45ee1
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;
    }
 
}