package com.dacrt.SBIABackend.dto;

public class TotalsResponseDto {
	private String impact;
	
	private String app;
	
	private String supplier;
	
	private String record;
	
	private String period;
	
	private String input;
	
	private String report;

	public TotalsResponseDto() {
		super();
	}
	
	public TotalsResponseDto(String impact, String app, String supplier, String record, String period, String input,
			String report) {
		super();
		this.impact = impact;
		this.app = app;
		this.supplier = supplier;
		this.record = record;
		this.period = period;
		this.input = input;
		this.report = report;
	}

	public String getImpact() {
		return impact;
	}

	public void setImpact(String impact) {
		this.impact = impact;
	}

	public String getApp() {
		return app;
	}

	public void setApp(String app) {
		this.app = app;
	}

	public String getSupplier() {
		return supplier;
	}

	public void setSupplier(String supplier) {
		this.supplier = supplier;
	}

	public String getRecord() {
		return record;
	}

	public void setRecord(String record) {
		this.record = record;
	}

	public String getPeriod() {
		return period;
	}

	public void setPeriod(String period) {
		this.period = period;
	}

	public String getInput() {
		return input;
	}

	public void setInput(String input) {
		this.input = input;
	}

	public String getReport() {
		return report;
	}

	public void setReport(String report) {
		this.report = report;
	}
	
	
	
}
