Doplněn do položek požadavků textový popisek.

closes #135
This commit is contained in:
2014-09-10 12:53:23 +02:00
parent 74586f9820
commit ff053f7fb2
3 changed files with 35 additions and 11 deletions
@@ -30,7 +30,10 @@ public class RequirementItem
@Column(name = "NAME")
private String name;
@Column(name = "TEXTITEM")
private String textItem;
@Column(name = "QUANTITY", precision=15, scale=4)
private BigDecimal quantity;
@@ -86,6 +89,16 @@ public class RequirementItem
this.name = name;
}
public String getTextItem()
{
return textItem;
}
public void setTextItem(String textItem)
{
this.textItem = textItem;
}
public BigDecimal getQuantity()
{
return quantity;