1234567891011121314151617181920212223242526272829303132333435 |
- /*
- * This file is generated by jOOQ.
- */
- package models;
- import javax.annotation.Generated;
- import models.tables.Fortune;
- import models.tables.World;
- /**
- * Convenience access to all tables in hello_world
- */
- @Generated(
- value = {
- "http://www.jooq.org",
- "jOOQ version:3.10.3"
- },
- comments = "This class is generated by jOOQ"
- )
- @SuppressWarnings({ "all", "unchecked", "rawtypes" })
- public class Tables {
- /**
- * The table <code>hello_world.fortune</code>.
- */
- public static final Fortune FORTUNE = models.tables.Fortune.FORTUNE;
- /**
- * The table <code>hello_world.world</code>.
- */
- public static final World WORLD = models.tables.World.WORLD;
- }
|