package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class EvalProccesSuppliRecordDto {

	@NotNull
	private int id;
	
	@NotNull
	private Integer supplierid;
	
	private String name;
	
	private String dsc;
	
	@NotNull
	private OperationlineDto type;
	
	private RtoRecordSupplierDto rto;
	
	private RtoRecordSupplierDto rpo;
	
	@NotNull
	private OperationlineDto requiredpar;

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

	public EvalProccesSuppliRecordDto(@NotNull int id, @NotNull Integer supplierid, String name, String dsc,
			@NotNull OperationlineDto type, RtoRecordSupplierDto rto, RtoRecordSupplierDto rpo,
			@NotNull OperationlineDto requiredpar) {
		super();
		this.id = id;
		this.supplierid = supplierid;
		this.name = name;
		this.dsc = dsc;
		this.type = type;
		this.rto = rto;
		this.rpo = rpo;
		this.requiredpar = requiredpar;
	}

	public int getId() {
		return id;
	}

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

	public Integer getSupplierid() {
		return supplierid;
	}

	public void setSupplierid(Integer supplierid) {
		this.supplierid = supplierid;
	}

	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 RtoRecordSupplierDto getRto() {
		return rto;
	}

	public void setRto(RtoRecordSupplierDto rto) {
		this.rto = rto;
	}

	public RtoRecordSupplierDto getRpo() {
		return rpo;
	}

	public void setRpo(RtoRecordSupplierDto rpo) {
		this.rpo = rpo;
	}

	public OperationlineDto getRequiredpar() {
		return requiredpar;
	}

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