package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class ResourcesStatusDto {
	
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;
	
	@NotNull
	private int status;
	
	@NotNull
	private String estatus;
	
	private String dsc;

	public ResourcesStatusDto(@NotNull Integer id, @NotNull String name, @NotNull int status, @NotNull String estatus,
			String dsc) {
		super();
		this.id = id;
		this.name = name;
		this.status = status;
		this.estatus = estatus;
		this.dsc = dsc;
	}

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

	public Integer getId() {
		return id;
	}

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

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public int getStatus() {
		return status;
	}

	public void setStatus(int status) {
		this.status = status;
	}

	public String getEstatus() {
		return estatus;
	}

	public void setEstatus(String estatus) {
		this.estatus = estatus;
	}

	public String getDsc() {
		return dsc;
	}

	public void setDsc(String dsc) {
		this.dsc = dsc;
	}
	

}
