package pwc.taxtech.atms.dto; public class TemplateUniqDto { private String ID; private String code; private String name; private Integer orderIndex; private Integer reportType; private String templateGroupID; private String templateGroupName; private String parentID; private String parentName; /** * template type */ private Integer payTaxType; private String industryIDs; private String serviceTypeID; private boolean isActiveAssociation; public String getID() { return ID; } public void setID(String ID) { this.ID = ID; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getOrderIndex() { return orderIndex; } public void setOrderIndex(Integer orderIndex) { this.orderIndex = orderIndex; } public Integer getReportType() { return reportType; } public void setReportType(Integer reportType) { this.reportType = reportType; } public String getTemplateGroupID() { return templateGroupID; } public void setTemplateGroupID(String templateGroupID) { this.templateGroupID = templateGroupID; } public String getTemplateGroupName() { return templateGroupName; } public void setTemplateGroupName(String templateGroupName) { this.templateGroupName = templateGroupName; } public String getParentID() { return parentID; } public void setParentID(String parentID) { this.parentID = parentID; } public String getParentName() { return parentName; } public void setParentName(String parentName) { this.parentName = parentName; } public Integer getPayTaxType() { return payTaxType; } public void setPayTaxType(Integer payTaxType) { this.payTaxType = payTaxType; } public String getIndustryIDs() { return industryIDs; } public void setIndustryIDs(String industryIDs) { this.industryIDs = industryIDs; } public String getServiceTypeID() { return serviceTypeID; } public void setServiceTypeID(String serviceTypeID) { this.serviceTypeID = serviceTypeID; } public boolean getIsActiveAssociation() { return isActiveAssociation; } public void setIsActiveAssociation(boolean isActiveAssociation) { this.isActiveAssociation = isActiveAssociation; } }