package pwc.taxtech.atms.dto; import java.util.List; public class DataExtractParam { private String period; private List<String> orgIds; private List<Integer> dataTypes; private String effectiveDateFrom; private String effectiveDateTo; public String getPeriod() { return period; } public void setPeriod(String period) { this.period = period; } public List<String> getOrgIds() { return orgIds; } public void setOrgIds(List<String> orgIds) { this.orgIds = orgIds; } public List<Integer> getDataTypes() { return dataTypes; } public void setDataTypes(List<Integer> dataTypes) { this.dataTypes = dataTypes; } public String getEffectiveDateFrom() { return effectiveDateFrom; } public void setEffectiveDateFrom(String effectiveDateFrom) { this.effectiveDateFrom = effectiveDateFrom; } public String getEffectiveDateTo() { return effectiveDateTo; } public void setEffectiveDateTo(String effectiveDateTo) { this.effectiveDateTo = effectiveDateTo; } }