001package org.kuali.ole.pojo.edi;
002
003import com.thoughtworks.xstream.annotations.XStreamAlias;
004import com.thoughtworks.xstream.annotations.XStreamConverter;
005import com.thoughtworks.xstream.converters.basic.BigDecimalConverter;
006
007import java.math.BigDecimal;
008
009/**
010 * Created by IntelliJ IDEA.
011 * User: palanivel
012 * Date: 3/6/12
013 * Time: 4:39 PM
014 * To change this template use File | Settings | File Templates.
015 */
016
017public class ItemPrice {
018
019    private String grossPrice;
020    private String price;
021
022    public String getGrossPrice() {
023        return grossPrice;
024    }
025
026    public void setGrossPrice(String grossPrice) {
027        this.grossPrice = grossPrice;
028    }
029
030    public String getPrice() {
031        return price;
032    }
033
034    public void setPrice(String price) {
035        this.price = price;
036    }
037}