package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class RequestersRecordsDto4 {
	@NotNull
	private Integer id;

	@NotNull
	private String name;
	
	@NotNull
	private StatusDto status;

	public RequestersRecordsDto4() {
		super();
	}

	public RequestersRecordsDto4(@NotNull Integer id, @NotNull String name, @NotNull StatusDto 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 StatusDto getStatus() {
		return status;
	}

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