package com.dacrt.SBIABackend.dto;

import java.util.List;

import javax.validation.constraints.NotNull;

public class EvalProccesAppDto {
	
	@NotNull
	private int id;
	
	@NotNull
	private Integer applicationid;
	
	private String name;
	
	@NotNull
	private OperationlineDto type;
	
	@NotNull
	private OperationlineDto facility;
	
	@NotNull
	private OperationlineDto dependencypar;
	
	@NotNull
	private OperationlineDto requiredpar;
	
	private String qty;
	
	private OperationlineDto periodpar;

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

	public EvalProccesAppDto(@NotNull int id, @NotNull Integer applicationid, String name,
			@NotNull OperationlineDto type, @NotNull OperationlineDto facility, @NotNull OperationlineDto dependencypar,
			@NotNull OperationlineDto requiredpar, String qty, OperationlineDto periodpar) {
		super();
		this.id = id;
		this.applicationid = applicationid;
		this.name = name;
		this.type = type;
		this.facility = facility;
		this.dependencypar = dependencypar;
		this.requiredpar = requiredpar;
		this.qty = qty;
		this.periodpar = periodpar;
	}

	public int getId() {
		return id;
	}

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

	public Integer getApplicationid() {
		return applicationid;
	}

	public void setApplicationid(Integer applicationid) {
		this.applicationid = applicationid;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public OperationlineDto getType() {
		return type;
	}

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

	public OperationlineDto getFacility() {
		return facility;
	}

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

	public OperationlineDto getDependencypar() {
		return dependencypar;
	}

	public void setDependencypar(OperationlineDto dependencypar) {
		this.dependencypar = dependencypar;
	}

	public OperationlineDto getRequiredpar() {
		return requiredpar;
	}

	public void setRequiredpar(OperationlineDto requiredpar) {
		this.requiredpar = requiredpar;
	}

	public String getQty() {
		return qty;
	}

	public void setQty(String qty) {
		this.qty = qty;
	}

	public OperationlineDto getPeriodpar() {
		return periodpar;
	}

	public void setPeriodpar(OperationlineDto periodpar) {
		this.periodpar = periodpar;
	}
	

}
