package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class ViceEntryDto {
	
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;
	
	private StateDto status;
	
	@NotNull
	private String ref;
	
	private TypeUnitDto type;
	
	@NotNull
	private String dsc;

	public ViceEntryDto(@NotNull Integer id, @NotNull String name, StateDto status, @NotNull String ref,
			TypeUnitDto type, @NotNull String dsc) {
		super();
		this.id = id;
		this.name = name;
		this.status = status;
		this.ref = ref;
		this.type = type;
		this.dsc = dsc;
	}

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

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

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

	public String getRef() {
		return ref;
	}

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

	public TypeUnitDto getType() {
		return type;
	}

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

	public String getDsc() {
		return dsc;
	}

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

}
