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; } }