package com.dacrt.SBIABackend.dto;

import java.math.BigInteger;
import java.util.List;

import javax.validation.constraints.NotNull;

public class UnitDetalleDto {

	@NotNull
	private Integer id;
	
	@NotNull
	private String dsc;
	
	@NotNull
	private String name;
	
	@NotNull
	private String ref;
	
	@NotNull
	private StatusDto status;
	
	@NotNull
	private TypeUnitDto type;
	
	@NotNull
	private VicepresidencyDto vicepresidency;
	
	@NotNull
	private FacilityDto facility;
	//private List<UnitsDto> records;
	
	public UnitDetalleDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public UnitDetalleDto(@NotNull Integer id, @NotNull String dsc, @NotNull String name, @NotNull String ref,
			@NotNull StatusDto status, @NotNull TypeUnitDto type, @NotNull VicepresidencyDto vicepresidency,
			@NotNull FacilityDto facility) {
		super();
		this.id = id;
		this.dsc = dsc;
		this.name = name;
		this.ref = ref;
		this.status = status;
		this.type = type;
		this.vicepresidency = vicepresidency;
		this.facility = facility;
	}

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getDsc() {
		return dsc;
	}

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

	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 StatusDto getStatus() {
		return status;
	}

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

	public TypeUnitDto getType() {
		return type;
	}

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

	public VicepresidencyDto getVicepresidency() {
		return vicepresidency;
	}

	public void setVicepresidency(VicepresidencyDto vicepresidency) {
		this.vicepresidency = vicepresidency;
	}

	public FacilityDto getFacility() {
		return facility;
	}

	public void setFacility(FacilityDto facility) {
		this.facility = facility;
	}

	


	
	
	
}
