package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class RequestersRecordsDto2 {
	@NotNull
	private Integer id;

	@NotNull
	private String name;
	
	@NotNull
	private String dsc;
	
	@NotNull
	private Long reportscount;
	
	@NotNull
	private StatusDto status;
	
	@NotNull
	private TypeResponseDto2 type;
	
	

	public RequestersRecordsDto2() {
		super();
	}

	

	public RequestersRecordsDto2(@NotNull Integer id, @NotNull String name, @NotNull String dsc,
			@NotNull Long reportscount, @NotNull StatusDto status, @NotNull TypeResponseDto2 type) {
		super();
		this.id = id;
		this.name = name;
		this.dsc = dsc;
		this.reportscount = reportscount;
		this.status = status;
		this.type = type;
	}



	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 String getDsc() {
		return dsc;
	}

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

	public StatusDto getStatus() {
		return status;
	}

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

	public TypeResponseDto2 getType() {
		return type;
	}

	public void setType(TypeResponseDto2 type) {
		this.type = type;
	}

	public Long getReportscount() {
		return reportscount;
	}

	public void setReportscount(Long reportscount) {
		this.reportscount = reportscount;
	}

}
