DeclarationItemTotalsDTO.java
package com.tradecloud.dto.api.invoice;
import java.math.BigDecimal;
public class DeclarationItemTotalsDTO {
private long id;
private BigDecimal totValue;
private BigDecimal totDiscount;
private BigDecimal totFactor;
private BigDecimal totCustomsValue;
private BigDecimal totCustomsDutyValue;
private BigDecimal totSch12B;
private BigDecimal totDutyValue;
private BigDecimal totVat;
public BigDecimal getTotValue() {
return totValue;
}
public void setTotValue(BigDecimal totValue) {
this.totValue = totValue;
}
public BigDecimal getTotDiscount() {
return totDiscount;
}
public void setTotDiscount(BigDecimal totDiscount) {
this.totDiscount = totDiscount;
}
public BigDecimal getTotFactor() {
return totFactor;
}
public void setTotFactor(BigDecimal totFactor) {
this.totFactor = totFactor;
}
public BigDecimal getTotCustomsValue() {
return totCustomsValue;
}
public void setTotCustomsValue(BigDecimal totCustomsValue) {
this.totCustomsValue = totCustomsValue;
}
public BigDecimal getTotCustomsDutyValue() {
return totCustomsDutyValue;
}
public void setTotCustomsDutyValue(BigDecimal totCustomsDutyValue) {
this.totCustomsDutyValue = totCustomsDutyValue;
}
public BigDecimal getTotSch12B() {
return totSch12B;
}
public void setTotSch12B(BigDecimal totSch12B) {
this.totSch12B = totSch12B;
}
public BigDecimal getTotDutyValue() {
return totDutyValue;
}
public void setTotDutyValue(BigDecimal totDutyValue) {
this.totDutyValue = totDutyValue;
}
public BigDecimal getTotVat() {
return totVat;
}
public void setTotVat(BigDecimal totVat) {
this.totVat = totVat;
}
}