package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class VicepresidenciesResponseDto2 {
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;
	
	@NotNull
	private int idStatus;
	
	@NotNull
	private String decstatus;
	
	@NotNull
	private String ref;
	
	@NotNull
	private int unittypepar;
	
	@NotNull
	private String dsc;
	
	@NotNull
	private String desctype;

	public VicepresidenciesResponseDto2() {
		super();
	}

	public VicepresidenciesResponseDto2(@NotNull Integer id, @NotNull String name, @NotNull int idStatus,
			@NotNull String decstatus,String ref,int unittypepar,String dsc,String desctype) {
		super();
		this.id = id;
		this.name = name;
		this.idStatus = idStatus;
		this.decstatus = decstatus;
		this.ref = ref;
		this.unittypepar = unittypepar;
		this.dsc = dsc;
		this.desctype = desctype;
	}

	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 getIdStatus() {
		return idStatus;
	}

	public void setIdStatus(int idStatus) {
		this.idStatus = idStatus;
	}

	public String getDecstatus() {
		return decstatus;
	}

	public void setDecstatus(String decstatus) {
		this.decstatus = decstatus;
	}

	public String getRef() {
		return ref;
	}

	public void setRef(String ref) {
		this.ref = ref;
	}

	public int getUnittypepar() {
		return unittypepar;
	}

	public void setUnittypepar(int unittypepar) {
		this.unittypepar = unittypepar;
	}

	public String getDsc() {
		return dsc;
	}

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

	public String getDesctype() {
		return desctype;
	}

	public void setDesctype(String desctype) {
		this.desctype = desctype;
	}
	
}
