package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class EvalProccesRecordDto {

	@NotNull
	private int id;
		
	private String name;
	
	private String dsc;
	
	private String location;
	
	@NotNull
	private OperationlineDto type;
		
	private RtoRecordSupplierDto rpo;
	
	@NotNull
	private OperationlineDto rguardpar;

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

	
	public EvalProccesRecordDto(@NotNull int id, String name, String dsc, String location,
			@NotNull OperationlineDto type, RtoRecordSupplierDto rpo, @NotNull OperationlineDto rguardpar) {
		super();
		this.id = id;
		this.name = name;
		this.dsc = dsc;
		this.location = location;
		this.type = type;
		this.rpo = rpo;
		this.rguardpar = rguardpar;
	}


	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 String getLocation() {
		return location;
	}


	public void setLocation(String location) {
		this.location = location;
	}


	public OperationlineDto getType() {
		return type;
	}


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


	public RtoRecordSupplierDto getRpo() {
		return rpo;
	}


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


	public OperationlineDto getRguardpar() {
		return rguardpar;
	}


	public void setRguardpar(OperationlineDto rguardpar) {
		this.rguardpar = rguardpar;
	}
	
}
