package org.aitp.competitor; import java.math.BigDecimal; public class PODtl { private short poLin; private String itmNbr; private BigDecimal itmPrc; private BigDecimal itmWgt; private int ordAmt; private int shpAmt; private int boAmt; /** * @param poLin * @param itmNbr * @param itmPrc * @param itmWgt * @param ordAmt * @param shpAmt * @param boAmt */ public PODtl(short poLin, String itmNbr, BigDecimal itmPrc, BigDecimal itmWgt, int ordAmt, int shpAmt, int boAmt) { super(); this.poLin = poLin; this.itmNbr = itmNbr; this.itmPrc = itmPrc; this.itmWgt = itmWgt; this.ordAmt = ordAmt; this.shpAmt = shpAmt; this.boAmt = boAmt; } // constructor public PODtl() { } // constructor /** * @return Returns the poLin. */ public short getPoLin() { return poLin; } /** * @param poLin The poLin to set. */ public void setPoLin(short poLin) { this.poLin = poLin; } /** * @return Returns the itmNbr. */ public String getItmNbr() { return itmNbr; } /** * @param itmNbr The itmNbr to set. */ public void setItmNbr(String itmNbr) { this.itmNbr = itmNbr; } /** * @return Returns the itmPrc. */ public BigDecimal getItmPrc() { return itmPrc; } /** * @param itmPrc The itmPrc to set. */ public void setItmPrc(BigDecimal itmPrc) { this.itmPrc = itmPrc; } /** * @return Returns the itmWgt. */ public BigDecimal getItmWgt() { return itmWgt; } /** * @param itmWgt The itmWgt to set. */ public void setItmWgt(BigDecimal itmWgt) { this.itmWgt = itmWgt; } /** * @return Returns the ordAmt. */ public int getOrdAmt() { return ordAmt; } /** * @param ordAmt The ordAmt to set. */ public void setOrdAmt(int ordAmt) { this.ordAmt = ordAmt; } /** * @return Returns the shpAmt. */ public int getShpAmt() { return shpAmt; } /** * @param shpAmt The shpAmt to set. */ public void setShpAmt(int shpAmt) { this.shpAmt = shpAmt; } /** * @return Returns the boAmt. */ public int getBoAmt() { return boAmt; } /** * @param boAmt The boAmt to set. */ public void setBoAmt(int boAmt) { this.boAmt = boAmt; } } // PODtl