package pwc.taxtech.atms.dto.epaccount;

import com.fasterxml.jackson.annotation.JsonProperty;

public class AccountMappingDto {
    @JsonProperty("organizationID")
    private String organizationId;
    @JsonProperty("industryID")
    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;
    }


}