AnalysisInternationalTaxDataDto.java 778 Bytes
Newer Older
gary's avatar
gary committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
package pwc.taxtech.atms.dto.analysis;

import java.math.BigDecimal;

/**
 * @Auther: Gary J Li
 * @Date: 14/03/2019 11:25
 * @Description:
 */
public class AnalysisInternationalTaxDataDto {

    private String taxCategory;

    private String taxType;

    private BigDecimal taxAmount;

    public String getTaxCategory() {
        return taxCategory;
    }

    public void setTaxCategory(String taxCategory) {
        this.taxCategory = taxCategory;
    }

    public String getTaxType() {
        return taxType;
    }

    public void setTaxType(String taxType) {
        this.taxType = taxType;
    }

    public BigDecimal getTaxAmount() {
        return taxAmount;
    }

    public void setTaxAmount(BigDecimal taxAmount) {
        this.taxAmount = taxAmount;
    }
}