package com.dacrt.SBIABackend.dto;
import java.util.List;

public class EvalUnitRangesDto {
	
	private int id;
	
	private String label;
	
	private int weight;
	
	private Integer qty;

	public EvalUnitRangesDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public EvalUnitRangesDto(int id, String label, int weight, Integer qty) {
		super();
		this.id = id;
		this.label = label;
		this.weight = weight;
		this.qty = qty;
	}

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public String getLabel() {
		return label;
	}

	public void setLabel(String label) {
		this.label = label;
	}

	public int getWeight() {
		return weight;
	}

	public void setWeight(int weight) {
		this.weight = weight;
	}

	public Integer getQty() {
		return qty;
	}

	public void setQty(Integer qty) {
		this.qty = qty;
	}
	
}
