package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class RangesRecursosDto {
	@NotNull
	private Integer id;
	
	@NotNull
	private String label;
	
	@NotNull
	private Integer weight;
	
	@NotNull
	private Integer qty;
	
	public RangesRecursosDto() {
		super();
	}

	public RangesRecursosDto(@NotNull Integer id, @NotNull String label, @NotNull Integer weight,
			@NotNull Integer qty) {
		super();
		this.id = id;
		this.label = label;
		this.weight = weight;
		this.qty = qty;
	}

	public Integer getId() {
		return id;
	}

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

	public String getLabel() {
		return label;
	}

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

	public Integer getWeight() {
		return weight;
	}

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

	public Integer getQty() {
		return qty;
	}

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