package pwc.taxtech.atms.dto.epaccount; public class AccountMappingDto { private String organizationID; private String industryID; /** * @return the organizationID */ public String getOrganizationID() { return organizationID; } /** * @param organizationID the organizationID to set */ public void setOrganizationID(String organizationID) { this.organizationID = organizationID; } /** * @return the industryID */ public String getIndustryID() { return industryID; } /** * @param industryID the industryID to set */ public void setIndustryID(String industryID) { this.industryID = industryID; } }