package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class EvalProccesInputsDto {
	
	
	@NotNull
	private int id;
		
	private String name;
	
	private String dsc;
		
	@NotNull
	private OperationlineDto type;
		
	private OperationlineDto unit;
	
	@NotNull
	private OperationlineDto process;

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

	public EvalProccesInputsDto(@NotNull int id, String name, String dsc, @NotNull OperationlineDto type,
			OperationlineDto unit, @NotNull OperationlineDto process) {
		super();
		this.id = id;
		this.name = name;
		this.dsc = dsc;
		this.type = type;
		this.unit = unit;
		this.process = process;
	}

	public int getId() {
		return id;
	}

	public void setId(int 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 OperationlineDto getType() {
		return type;
	}

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

	public OperationlineDto getUnit() {
		return unit;
	}

	public void setUnit(OperationlineDto unit) {
		this.unit = unit;
	}

	public OperationlineDto getProcess() {
		return process;
	}

	public void setProcess(OperationlineDto process) {
		this.process = process;
	}
		
}
