/** * This class is generated by jOOQ */ package classes.routines; import classes.Public; import java.sql.Date; import javax.annotation.Generated; import org.jooq.Field; import org.jooq.Parameter; import org.jooq.impl.AbstractRoutine; /** * This class is generated by jOOQ. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.8.6" }, comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class AddSellLog extends AbstractRoutine { private static final long serialVersionUID = 1527685739; /** * The parameter public.add_sell_log.RETURN_VALUE. */ public static final Parameter RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.add_sell_log.p_id. */ public static final Parameter P_ID = createParameter("p_id", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.add_sell_log.sh_id. */ public static final Parameter SH_ID = createParameter("sh_id", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.add_sell_log.in_amount. */ public static final Parameter IN_AMOUNT = createParameter("in_amount", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.add_sell_log.date. */ public static final Parameter DATE = createParameter("date", org.jooq.impl.SQLDataType.DATE, false, false); /** * Create a new routine call instance */ public AddSellLog() { super("add_sell_log", Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER); setReturnParameter(RETURN_VALUE); addInParameter(P_ID); addInParameter(SH_ID); addInParameter(IN_AMOUNT); addInParameter(DATE); } /** * Set the p_id parameter IN value to the routine */ public void setPId(Integer value) { setValue(P_ID, value); } /** * Set the p_id parameter to the function to be used with a {@link org.jooq.Select} statement */ public void setPId(Field field) { setField(P_ID, field); } /** * Set the sh_id parameter IN value to the routine */ public void setShId(Integer value) { setValue(SH_ID, value); } /** * Set the sh_id parameter to the function to be used with a {@link org.jooq.Select} statement */ public void setShId(Field field) { setField(SH_ID, field); } /** * Set the in_amount parameter IN value to the routine */ public void setInAmount(Integer value) { setValue(IN_AMOUNT, value); } /** * Set the in_amount parameter to the function to be used with a {@link org.jooq.Select} statement */ public void setInAmount(Field field) { setField(IN_AMOUNT, field); } /** * Set the date parameter IN value to the routine */ public void setDate(Date value) { setValue(DATE, value); } /** * Set the date parameter to the function to be used with a {@link org.jooq.Select} statement */ public void setDate(Field field) { setField(DATE, field); } }