package com.dacrt.SBIABackend.dto.requestDto;

import java.util.List;

import javax.validation.constraints.NotNull;

public class UnitsRequestNewDto {
	
	@NotNull
	private Integer status;
	
	@NotNull
	private String name;

	@NotNull
	private String dsc; 
	
	@NotNull
	private String ref;
	  
	@NotNull
	private Integer unittypepar;
	
	@NotNull
	private Integer vicepresidencyid;
	
	@NotNull
	private Integer facilityid;
	
	private List<Integer> processes;
	
	public UnitsRequestNewDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public UnitsRequestNewDto(@NotNull Integer status, @NotNull String name, @NotNull String dsc, @NotNull String ref,
			@NotNull Integer unittypepar,@NotNull Integer facilityid,@NotNull Integer vicepresidencyid, List<Integer> processes) {
		super();
		this.status = status;
		this.name = name;
		this.dsc = dsc;
		this.ref = ref;
		this.unittypepar = unittypepar;
		this.vicepresidencyid = vicepresidencyid;
		this.processes = processes;
		this.facilityid = facilityid;
	}

	public Integer getStatus() {
		return status;
	}

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

	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 Integer getUnittypepar() {
		return unittypepar;
	}

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

	public Integer getVicepresidencyid() {
		return vicepresidencyid;
	}

	public void setVicepresidencyid(Integer vicepresidencyid) {
		this.vicepresidencyid = vicepresidencyid;
	}

	public List<Integer> getProcesses() {
		return processes;
	}

	public void setProcesses(List<Integer> processes) {
		this.processes = processes;
	}

	public Integer getFacilityid() {
		return facilityid;
	}

	public void setFacilityid(Integer facilityid) {
		this.facilityid = facilityid;
	}
	
	
	
	
}
