1 package org.kuali.ole.pojo.edi;
2
3 import com.thoughtworks.xstream.annotations.XStreamAlias;
4 import com.thoughtworks.xstream.annotations.XStreamConverter;
5 import com.thoughtworks.xstream.converters.basic.BigDecimalConverter;
6
7 import java.math.BigDecimal;
8
9
10
11
12
13
14
15
16
17 public class ItemPrice {
18
19 private String grossPrice;
20 private String price;
21
22 public String getGrossPrice() {
23 return grossPrice;
24 }
25
26 public void setGrossPrice(String grossPrice) {
27 this.grossPrice = grossPrice;
28 }
29
30 public String getPrice() {
31 return price;
32 }
33
34 public void setPrice(String price) {
35 this.price = price;
36 }
37 }