Tables.java 709 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * This file is generated by jOOQ.
  3. */
  4. package models;
  5. import javax.annotation.Generated;
  6. import models.tables.Fortune;
  7. import models.tables.World;
  8. /**
  9. * Convenience access to all tables in hello_world
  10. */
  11. @Generated(
  12. value = {
  13. "http://www.jooq.org",
  14. "jOOQ version:3.10.3"
  15. },
  16. comments = "This class is generated by jOOQ"
  17. )
  18. @SuppressWarnings({ "all", "unchecked", "rawtypes" })
  19. public class Tables {
  20. /**
  21. * The table <code>hello_world.fortune</code>.
  22. */
  23. public static final Fortune FORTUNE = models.tables.Fortune.FORTUNE;
  24. /**
  25. * The table <code>hello_world.world</code>.
  26. */
  27. public static final World WORLD = models.tables.World.WORLD;
  28. }