package com.dacrt.SBIABackend.dto;

import java.util.List;

import javax.validation.constraints.NotNull;

import com.dacrt.SBIABackend.security.dto.UsersUnitDto;

public class UnitsProcessesDetailDto {
	

	   @NotNull
	   private Integer id;

	   @NotNull
	   private String name;
	   
	   @NotNull
	   private String dsc;

	   @NotNull
	   private String ref;
	   
	   @NotNull
	   private int idpro;
	   
	   @NotNull
	   private String proname;

	   @NotNull
	   private int idvp;

	   private String vpname;
	  
       private int idfac;
       
       private String facname;
       
       private String descr;
       
       private String valor;

	   public UnitsProcessesDetailDto() {
		super();
		// TODO Auto-generated constructor stub
	   }

	public UnitsProcessesDetailDto(@NotNull Integer id, @NotNull String name, @NotNull String dsc, @NotNull String ref,
			@NotNull int idpro, @NotNull String proname, @NotNull int idvp, String vpname, int idfac, String facname,
			String descr, String valor) {
		super();
		this.id = id;
		this.name = name;
		this.dsc = dsc;
		this.ref = ref;
		this.idpro = idpro;
		this.proname = proname;
		this.idvp = idvp;
		this.vpname = vpname;
		this.idfac = idfac;
		this.facname = facname;
		this.descr = descr;
		this.valor = valor;
	}

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

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

	public int getIdpro() {
		return idpro;
	}

	public void setIdpro(int idpro) {
		this.idpro = idpro;
	}

	public String getProname() {
		return proname;
	}

	public void setProname(String proname) {
		this.proname = proname;
	}

	public int getIdvp() {
		return idvp;
	}

	public void setIdvp(int idvp) {
		this.idvp = idvp;
	}

	public String getVpname() {
		return vpname;
	}

	public void setVpname(String vpname) {
		this.vpname = vpname;
	}

	public int getIdfac() {
		return idfac;
	}

	public void setIdfac(int idfac) {
		this.idfac = idfac;
	}

	public String getFacname() {
		return facname;
	}

	public void setFacname(String facname) {
		this.facname = facname;
	}

	public String getDescr() {
		return descr;
	}

	public void setDescr(String descr) {
		this.descr = descr;
	}

	public String getValor() {
		return valor;
	}

	public void setValor(String valor) {
		this.valor = valor;
	}
       
}
