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

com.mybatisflex.test.model.table.DiseaseTableDef Maven / Gradle / Ivy

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

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

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

    /**
     * 疾病

 @author Ice 2023/09/26
 @version 1.0
     */
    public static final DiseaseTableDef DISEASE = new DiseaseTableDef();

    /**
     * 疾病名称
     */
    public final QueryColumn NAME = new QueryColumn(this, "name");

    /**
     * ID
     */
    public final QueryColumn DISEASE_ID = new QueryColumn(this, "disease_id");

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

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

    public DiseaseTableDef() {
        super("", "tb_disease");
    }

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy