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

cn.vertxup.erp.domain.Db Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
/*
 * This file is generated by jOOQ.
 */
package cn.vertxup.erp.domain;


import cn.vertxup.erp.domain.tables.*;
import io.vertx.tp.ke.refine.Ke;
import org.jooq.Catalog;
import org.jooq.Table;
import org.jooq.impl.SchemaImpl;

import java.util.Arrays;
import java.util.List;


/**
 * This class is generated by jOOQ.
 */
@SuppressWarnings({"all", "unchecked", "rawtypes"})
public class Db extends SchemaImpl {

    /**
     * The reference instance of DB_ETERNAL
     */
    public static final Db DB_ETERNAL = new Db();
    private static final long serialVersionUID = 1L;
    /**
     * The table DB_ETERNAL.E_BRAND.
     */
    public final EBrand E_BRAND = EBrand.E_BRAND;

    /**
     * The table DB_ETERNAL.E_COMPANY.
     */
    public final ECompany E_COMPANY = ECompany.E_COMPANY;

    /**
     * The table DB_ETERNAL.E_CONTRACT.
     */
    public final EContract E_CONTRACT = EContract.E_CONTRACT;

    /**
     * The table DB_ETERNAL.E_CUSTOMER.
     */
    public final ECustomer E_CUSTOMER = ECustomer.E_CUSTOMER;

    /**
     * The table DB_ETERNAL.E_DEPT.
     */
    public final EDept E_DEPT = EDept.E_DEPT;

    /**
     * The table DB_ETERNAL.E_EMPLOYEE.
     */
    public final EEmployee E_EMPLOYEE = EEmployee.E_EMPLOYEE;

    /**
     * The table DB_ETERNAL.E_IDENTITY.
     */
    public final EIdentity E_IDENTITY = EIdentity.E_IDENTITY;

    /**
     * The table DB_ETERNAL.E_TEAM.
     */
    public final ETeam E_TEAM = ETeam.E_TEAM;

    /**
     * The table DB_ETERNAL.R_COMPANY_CUSTOMER.
     */
    public final RCompanyCustomer R_COMPANY_CUSTOMER = RCompanyCustomer.R_COMPANY_CUSTOMER;

    /**
     * The table DB_ETERNAL.R_TEAM_EMPLOYEE.
     */
    public final RTeamEmployee R_TEAM_EMPLOYEE = RTeamEmployee.R_TEAM_EMPLOYEE;

    /**
     * No further instances allowed
     */
    private Db() {
        super(Ke.getDatabase(), null);
    }


    @Override
    public Catalog getCatalog() {
        return DefaultCatalog.DEFAULT_CATALOG;
    }

    @Override
    public final List> getTables() {
        return Arrays.asList(
            EBrand.E_BRAND,
            ECompany.E_COMPANY,
            EContract.E_CONTRACT,
            ECustomer.E_CUSTOMER,
            EDept.E_DEPT,
            EEmployee.E_EMPLOYEE,
            EIdentity.E_IDENTITY,
            ETeam.E_TEAM,
            RCompanyCustomer.R_COMPANY_CUSTOMER,
            RTeamEmployee.R_TEAM_EMPLOYEE
        );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy