TaxPayerReportRuleDto.java 1.44 KB
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang 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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
package pwc.taxtech.atms.dto;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public class TaxPayerReportRuleDto {
    private String id;
    private int isDefault;
    private int taxPayerType;
    private String templateGroupId;
    private List<String> orgs;
    private Long editKey;
    private Boolean isNotPersistent;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public int getIsDefault() {
        return isDefault;
    }

    public void setIsDefault(int isDefault) {
        this.isDefault = isDefault;
    }

    public int getTaxPayerType() {
        return taxPayerType;
    }

    public void setTaxPayerType(int taxPayerType) {
        this.taxPayerType = taxPayerType;
    }

    public String getTemplateGroupId() {
        return templateGroupId;
    }

    public void setTemplateGroupId(String templateGroupId) {
        this.templateGroupId = templateGroupId;
    }

    public List<String> getOrgs() {
        return orgs;
    }

    public void setOrgs(List<String> orgs) {
        this.orgs = orgs;
    }


    public Long getEditKey() {
        return editKey;
    }

    public void setEditKey(Long editKey) {
        this.editKey = editKey;
    }

    public Boolean getNotPersistent() {
        return isNotPersistent;
    }

    public void setNotPersistent(Boolean notPersistent) {
        isNotPersistent = notPersistent;
    }
}