eight
2024-11-22 f9e7b317627d82d3c7432d23e497748cbdf3b993
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;
    }
 
}