eight
2024-08-06 f06d7fd046d32f74caf259f3ddbda0bcaf7de799
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;
    }
 
}