All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.yulichang.adapter.AdapterHelper Maven / Gradle / Ivy

There is a newer version: 1.5.2
Show newest version
package com.github.yulichang.adapter;

import com.baomidou.mybatisplus.core.MybatisPlusVersion;
import com.github.yulichang.adapter.base.ITableInfoAdapter;
import com.github.yulichang.adapter.v33x.TableInfoAdapterV33x;

/**
 * @author yulichang
 * @since 1.4.3
 */
public class AdapterHelper {

    public static ITableInfoAdapter getTableInfoAdapter() {
        String version = MybatisPlusVersion.getVersion();
        if (version.startsWith("3.3.")) {
            return new TableInfoAdapterV33x();
        }
        return new TableInfoAdapter();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy