Coinshare.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * This file is generated by jOOQ.
  3. */
  4. package jooq.routines;
  5. import javax.annotation.Generated;
  6. import jooq.Thmodel;
  7. import org.jooq.Parameter;
  8. import org.jooq.impl.AbstractRoutine;
  9. /**
  10. * This class is generated by jOOQ.
  11. */
  12. @Generated(
  13. value = {
  14. "http://www.jooq.org",
  15. "jOOQ version:3.11.5"
  16. },
  17. comments = "This class is generated by jOOQ"
  18. )
  19. @SuppressWarnings({ "all", "unchecked", "rawtypes" })
  20. public class Coinshare extends AbstractRoutine<java.lang.Void> {
  21. private static final long serialVersionUID = -1649403786;
  22. /**
  23. * The parameter <code>thmodel.CoinShare.tablename</code>.
  24. */
  25. public static final Parameter<String> TABLENAME = createParameter("tablename", org.jooq.impl.SQLDataType.CHAR(16), false, false);
  26. /**
  27. * The parameter <code>thmodel.CoinShare.tablepk</code>.
  28. */
  29. public static final Parameter<Integer> TABLEPK = createParameter("tablepk", org.jooq.impl.SQLDataType.INTEGER, false, false);
  30. /**
  31. * Create a new routine call instance
  32. */
  33. public Coinshare() {
  34. super("CoinShare", Thmodel.THMODEL);
  35. addInParameter(TABLENAME);
  36. addInParameter(TABLEPK);
  37. }
  38. /**
  39. * Set the <code>tablename</code> parameter IN value to the routine
  40. */
  41. public void setTablename(String value) {
  42. setValue(TABLENAME, value);
  43. }
  44. /**
  45. * Set the <code>tablepk</code> parameter IN value to the routine
  46. */
  47. public void setTablepk(Integer value) {
  48. setValue(TABLEPK, value);
  49. }
  50. }