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

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

The 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 InnerTableDef extends TableDef {

    /**
     * @author 王帅
 @since 2023-07-01
     */
    public static final InnerTableDef INNER = new InnerTableDef();

    public final QueryColumn ID = new QueryColumn(this, "id");

    public final QueryColumn TYPE = new QueryColumn(this, "type");

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

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

    public InnerTableDef() {
        super("", "tb_inner");
    }

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy