package pwc.taxtech.atms.dto.vatdto; public class TrialBalanceParam { private String category; private String criteria; private String orgId; private Integer fromPeriod; private Integer toPeriod; public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; } public String getCriteria() { return this.criteria; } public void setCriteria(String criteria) { this.criteria = criteria; } public Integer getFromPeriod() { return this.fromPeriod; } public void setFromPeriod(Integer fromPeriod) { this.fromPeriod = fromPeriod; } public Integer getToPeriod() { return this.toPeriod; } public void setToPeriod(Integer toPeriod) { this.toPeriod = toPeriod; } public String getOrgId() { return this.orgId; } public void setOrgId(String orgId) { this.orgId = orgId; } }