package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class VicepresidenciesResponseDto {
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;
	
	@NotNull
	private int idStatus;
	
	@NotNull
	private String decstatus;
	
	@NotNull
	private String ref;
	
	private String type;
	
	@NotNull
	private String dsc;
	
	@NotNull
	private String desctype;
	
	@NotNull
	private Integer cuantos;

	public VicepresidenciesResponseDto() {
		super();
	}

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

	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 getRef() {
		return ref;
	}

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

	public String getDsc() {
		return dsc;
	}

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

	public String getType() {
		return type;
	}

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

	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 getDesctype() {
		return desctype;
	}

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

	public Integer getCuantos() {
		return cuantos;
	}

	public void setCuantos(Integer cuantos) {
		this.cuantos = cuantos;
	}
	
}
