eight
2024-09-02 3be2584eca33b24abfa773a4c5ae6f5c1de31d76
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;
    }
 
}