/** * This class is generated by jOOQ */ package classes.routines; import classes.Public; import java.math.BigDecimal; 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 AddPositionSalary extends AbstractRoutine { private static final long serialVersionUID = -183526029; /** * The parameter public.add_position_salary.RETURN_VALUE. */ public static final Parameter RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.add_position_salary.pos_id. */ public static final Parameter POS_ID = createParameter("pos_id", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.add_position_salary.sh_id. */ public static final Parameter SH_ID = createParameter("sh_id", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.add_position_salary.salary. */ public static final Parameter SALARY = createParameter("salary", org.jooq.impl.SQLDataType.NUMERIC, false, false); /** * Create a new routine call instance */ public AddPositionSalary() { super("add_position_salary", Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER); setReturnParameter(RETURN_VALUE); addInParameter(POS_ID); addInParameter(SH_ID); addInParameter(SALARY); } /** * Set the pos_id parameter IN value to the routine */ public void setPosId(Integer value) { setValue(POS_ID, value); } /** * Set the pos_id parameter to the function to be used with a {@link org.jooq.Select} statement */ public void setPosId(Field field) { setField(POS_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 salary parameter IN value to the routine */ public void setSalary(BigDecimal value) { setValue(SALARY, value); } /** * Set the salary parameter to the function to be used with a {@link org.jooq.Select} statement */ public void setSalary(Field field) { setField(SALARY, field); } }