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

com.mybatisflex.test.entity.table.TestTableDef Maven / Gradle / Ivy

There is a newer version: 1.10.3
Show newest version
package com.mybatisflex.test.entity.table;

import com.mybatisflex.core.query.QueryColumn;
import com.mybatisflex.core.table.TableDef;

// Auto generate by mybatis-flex, do not modify it.
public class TestTableDef extends TableDef {

    /**
     * @author 王帅
 @since 2023-06-16
     */
    public static final TestTableDef TEST = new TestTableDef();

    /**
     * 所有字段。
     */
    public final QueryColumn ALL_COLUMNS = new QueryColumn(this, "*");

    /**
     * 默认字段,不包含逻辑删除或者 large 等字段。
     */
    public final QueryColumn[] DEFAULT_COLUMNS = new QueryColumn[]{};

    public TestTableDef() {
        super("", "test");
    }

    private TestTableDef(String schema, String name, String alisa) {
        super(schema, name, alisa);
    }

    public TestTableDef as(String alias) {
        String key = getNameWithSchema() + "." + alias;
        return getCache(key, k -> new TestTableDef("", "test", alias));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy