package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class EntryRequestersDto2 {
	@NotNull
	private Integer id;

	@NotNull
	private String name;
	
	@NotNull
	private String dsc;
	
	@NotNull
	private Long reportscount;
	
	@NotNull
	private StatusDto2 status;
	
	@NotNull
	private TypeResponseDto2 type;
	
	private ContactDto contact;

	public EntryRequestersDto2() {
		super();
	}

	public EntryRequestersDto2(@NotNull Integer id, @NotNull String name, @NotNull String dsc,
			@NotNull Long reportscount, @NotNull StatusDto2 status, @NotNull TypeResponseDto2 type,
			ContactDto contact) {
		super();
		this.id = id;
		this.name = name;
		this.dsc = dsc;
		this.reportscount = reportscount;
		this.status = status;
		this.type = type;
		this.contact = contact;
	}

	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 Long getReportscount() {
		return reportscount;
	}

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

	public StatusDto2 getStatus() {
		return status;
	}

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

	public TypeResponseDto2 getType() {
		return type;
	}

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

	public ContactDto getContact() {
		return contact;
	}

	public void setContact(ContactDto contact) {
		this.contact = contact;
	}

	

}
