aggiunte classi per stampa scheda costi
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
package it.integry.core.report_javabean.model.scheda_costi;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class StampaSchedaCostiDTO {
|
||||
|
||||
private String codMart;
|
||||
@@ -12,9 +14,9 @@ public class StampaSchedaCostiDTO {
|
||||
private String descrizioneGruppo;
|
||||
private String categoria;
|
||||
private String descrCosto;
|
||||
private String qtaQrod;
|
||||
private String costoUnit;
|
||||
private String valore;
|
||||
private BigDecimal qtaQrod;
|
||||
private BigDecimal costoUnit;
|
||||
private BigDecimal valore;
|
||||
|
||||
public String getCodMart() {
|
||||
return codMart;
|
||||
@@ -43,29 +45,29 @@ public class StampaSchedaCostiDTO {
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getQtaQrod() {
|
||||
public BigDecimal getQtaQrod() {
|
||||
return qtaQrod;
|
||||
}
|
||||
|
||||
public StampaSchedaCostiDTO setQtaQrod(String qtaQrod) {
|
||||
public StampaSchedaCostiDTO setQtaQrod(BigDecimal qtaQrod) {
|
||||
this.qtaQrod = qtaQrod;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getCostoUnit() {
|
||||
public BigDecimal getCostoUnit() {
|
||||
return costoUnit;
|
||||
}
|
||||
|
||||
public StampaSchedaCostiDTO setCostoUnit(String costoUnit) {
|
||||
public StampaSchedaCostiDTO setCostoUnit(BigDecimal costoUnit) {
|
||||
this.costoUnit = costoUnit;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getValore() {
|
||||
public BigDecimal getValore() {
|
||||
return valore;
|
||||
}
|
||||
|
||||
public StampaSchedaCostiDTO setValore(String valore) {
|
||||
public StampaSchedaCostiDTO setValore(BigDecimal valore) {
|
||||
this.valore = valore;
|
||||
return this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user