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

com.github.yulichang.toolkit.Asserts Maven / Gradle / Ivy

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

import com.baomidou.mybatisplus.core.exceptions.MybatisPlusException;
import com.baomidou.mybatisplus.core.metadata.TableInfo;

/**
 * @author yulichang
 * @since 1.4.5
 */
public class Asserts {

    public static void hasTable(TableInfo tableInfo, Class entityClass) {
        if (tableInfo == null) {
            throw new MybatisPlusException(String.format(
                    "mapper not find by class <%s> , add mapper and extends BaseMapper or MPJBaseMapper",
                    entityClass.getSimpleName()));
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy