package pwc.taxtech.atms.dto.vatdto; import java.math.BigDecimal; import java.util.Date; public class InputVATInvoiceItemExtendDto { String invoiceId; String invoiceItemId; Integer period; Date certificationDate; String sellerTaxNumber; String invoiceCode; String invoiceNumber; BigDecimal amount; Integer invoiceType; BigDecimal taxAmount; public String getInvoiceId() { return this.invoiceId; } public void setInvoiceId(String invoiceId) { this.invoiceId = invoiceId; } public String getInvoiceItemId() { return this.invoiceItemId; } public void setInvoiceItemId(String invoiceItemId) { this.invoiceItemId = invoiceItemId; } public Integer getPeriod() { return this.period; } public void setPeriod(Integer period) { this.period = period; } public Date getCertificationDate() { return this.certificationDate; } public void setCertificationDate(Date certificationDate) { this.certificationDate = certificationDate; } public String getSellerTaxNumber() { return this.sellerTaxNumber; } public void setSellerTaxNumber(String sellerTaxNumber) { this.sellerTaxNumber = sellerTaxNumber; } public String getInvoiceCode() { return this.invoiceCode; } public void setInvoiceCode(String invoiceCode) { this.invoiceCode = invoiceCode; } public String getInvoiceNumber() { return this.invoiceNumber; } public void setInvoiceNumber(String invoiceNumber) { this.invoiceNumber = invoiceNumber; } public BigDecimal getAmount() { return this.amount; } public void setAmount(BigDecimal amount) { this.amount = amount; } public Integer getInvoiceType() { return this.invoiceType; } public void setInvoiceType(Integer invoiceType) { this.invoiceType = invoiceType; } public BigDecimal getTaxAmount() { return this.taxAmount; } public void setTaxAmount(BigDecimal taxAmount) { this.taxAmount = taxAmount; } }