/** * 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 AddProductPrice extends AbstractRoutine { private static final long serialVersionUID = 965730660; /** * The parameter public.add_product_price.RETURN_VALUE. */ public static final Parameter RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.add_product_price.pr_id. */ public static final Parameter PR_ID = createParameter("pr_id", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.add_product_price.sh_id. */ public static final Parameter SH_ID = createParameter("sh_id", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.add_product_price.price. */ public static final Parameter PRICE = createParameter("price", org.jooq.impl.SQLDataType.NUMERIC, false, false); /** * Create a new routine call instance */ public AddProductPrice() { super("add_product_price", Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER); setReturnParameter(RETURN_VALUE); addInParameter(PR_ID); addInParameter(SH_ID); addInParameter(PRICE); } /** * Set the pr_id parameter IN value to the routine */ public void setPrId(Integer value) { setValue(PR_ID, value); } /** * Set the pr_id parameter to the function to be used with a {@link org.jooq.Select} statement */ public void setPrId(Field field) { setField(PR_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 price parameter IN value to the routine */ public void setPrice(BigDecimal value) { setValue(PRICE, value); } /** * Set the price parameter to the function to be used with a {@link org.jooq.Select} statement */ public void setPrice(Field field) { setField(PRICE, field); } }