Commit 2e14c1cd authored by Darrick Yong's avatar Darrick Yong

update sku to string

parent 6279caaa
......@@ -15,12 +15,12 @@ public class Item {
private String itemName;
private int itemQuantity;
private float itemPrice;
private int itemSku;
private String itemSku;
public Item() {
}
public Item(String itemId, String itemName, int itemQuantity, double itemPrice, int itemSku) {
public Item(String itemId, String itemName, int itemQuantity, double itemPrice, String itemSku) {
this.itemId = itemId;
this.itemName = itemName;
this.itemQuantity = itemQuantity;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment