/** * This class is generated by jOOQ */ package classes.routines; import classes.Public; import java.sql.Date; import javax.annotation.Generated; 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 UpdateSellLog extends AbstractRoutine { private static final long serialVersionUID = 957019871; /** * The parameter public.update_sell_log.l_id. */ public static final Parameter L_ID = createParameter("l_id", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.update_sell_log.p_id. */ public static final Parameter P_ID = createParameter("p_id", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.update_sell_log.sh_id. */ public static final Parameter SH_ID = createParameter("sh_id", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.update_sell_log.in_amount. */ public static final Parameter IN_AMOUNT = createParameter("in_amount", org.jooq.impl.SQLDataType.INTEGER, false, false); /** * The parameter public.update_sell_log.in_date. */ public static final Parameter IN_DATE = createParameter("in_date", org.jooq.impl.SQLDataType.DATE, false, false); /** * Create a new routine call instance */ public UpdateSellLog() { super("update_sell_log", Public.PUBLIC); addInParameter(L_ID); addInParameter(P_ID); addInParameter(SH_ID); addInParameter(IN_AMOUNT); addInParameter(IN_DATE); } /** * Set the l_id parameter IN value to the routine */ public void setLId(Integer value) { setValue(L_ID, value); } /** * Set the p_id parameter IN value to the routine */ public void setPId(Integer value) { setValue(P_ID, value); } /** * Set the sh_id parameter IN value to the routine */ public void setShId(Integer value) { setValue(SH_ID, value); } /** * Set the in_amount parameter IN value to the routine */ public void setInAmount(Integer value) { setValue(IN_AMOUNT, value); } /** * Set the in_date parameter IN value to the routine */ public void setInDate(Date value) { setValue(IN_DATE, value); } }