| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /*
- * This file is generated by jOOQ.
- */
- package jooq.routines;
- import javax.annotation.Generated;
- import jooq.Thmodel;
- import org.jooq.Parameter;
- import org.jooq.impl.AbstractRoutine;
- /**
- * This class is generated by jOOQ.
- */
- @Generated(
- value = {
- "http://www.jooq.org",
- "jOOQ version:3.11.5"
- },
- comments = "This class is generated by jOOQ"
- )
- @SuppressWarnings({ "all", "unchecked", "rawtypes" })
- public class Coinshare extends AbstractRoutine<java.lang.Void> {
- private static final long serialVersionUID = -1649403786;
- /**
- * The parameter <code>thmodel.CoinShare.tablename</code>.
- */
- public static final Parameter<String> TABLENAME = createParameter("tablename", org.jooq.impl.SQLDataType.CHAR(16), false, false);
- /**
- * The parameter <code>thmodel.CoinShare.tablepk</code>.
- */
- public static final Parameter<Integer> TABLEPK = createParameter("tablepk", org.jooq.impl.SQLDataType.INTEGER, false, false);
- /**
- * Create a new routine call instance
- */
- public Coinshare() {
- super("CoinShare", Thmodel.THMODEL);
- addInParameter(TABLENAME);
- addInParameter(TABLEPK);
- }
- /**
- * Set the <code>tablename</code> parameter IN value to the routine
- */
- public void setTablename(String value) {
- setValue(TABLENAME, value);
- }
- /**
- * Set the <code>tablepk</code> parameter IN value to the routine
- */
- public void setTablepk(Integer value) {
- setValue(TABLEPK, value);
- }
- }
|