package com.dacrt.SBIABackend.dto;

import java.math.BigDecimal;
import java.math.BigInteger;

public class ImpactTrendingReportDto {

	private String label;
	private BigInteger value;
	private BigDecimal percent;
	public ImpactTrendingReportDto() {
		super();
	}
	public ImpactTrendingReportDto(String label, BigInteger value, BigDecimal percent) {
		super();
		this.label = label;
		this.value = value;
		this.percent = percent;
	}
	public String getLabel() {
		return label;
	}
	public void setLabel(String label) {
		this.label = label;
	}
	public BigInteger getValue() {
		return value;
	}
	public void setValue(BigInteger value) {
		this.value = value;
	}
	public BigDecimal getPercent() {
		return percent;
	}
	public void setPercent(BigDecimal percent) {
		this.percent = percent;
	}
	
	
	
}
