package com.dacrt.SBIABackend.dto;

import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.validation.constraints.NotNull;

public class RequestersDto {
	@NotNull
	private Integer id;

	@NotNull
	private String name;
	
	@NotNull
	private int status;

	public RequestersDto() {
		super();
	}

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

	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;
	}
	
	
}
