package com.dacrt.SBIABackend.dto;

import java.util.List;

import javax.validation.constraints.NotNull;

public class ExternalreqsRecordDto {
	
	@NotNull
	private Integer id;
	
	@NotNull
	private StatusDto status;
	
	private StatusDto requester;
	
	private StatusDto worker;
	
	private String requerimientos;
	
	private StatusDto term;
	
	private String scenary;
	
	private String plan;

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

	public ExternalreqsRecordDto(@NotNull Integer id, @NotNull StatusDto status, StatusDto requester, StatusDto worker,
			String requerimientos, StatusDto term, String scenary, String plan) {
		super();
		this.id = id;
		this.status = status;
		this.requester = requester;
		this.worker = worker;
		this.requerimientos = requerimientos;
		this.term = term;
		this.scenary = scenary;
		this.plan = plan;
	}

	public Integer getId() {
		return id;
	}

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

	public StatusDto getStatus() {
		return status;
	}

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

	public StatusDto getRequester() {
		return requester;
	}

	public void setRequester(StatusDto requester) {
		this.requester = requester;
	}

	public StatusDto getWorker() {
		return worker;
	}

	public void setWorker(StatusDto worker) {
		this.worker = worker;
	}

	public String getRequerimientos() {
		return requerimientos;
	}

	public void setRequerimientos(String requerimientos) {
		this.requerimientos = requerimientos;
	}

	public StatusDto getTerm() {
		return term;
	}

	public void setTerm(StatusDto term) {
		this.term = term;
	}

	public String getScenary() {
		return scenary;
	}

	public void setScenary(String scenary) {
		this.scenary = scenary;
	}

	public String getPlan() {
		return plan;
	}

	public void setPlan(String plan) {
		this.plan = plan;
	}
	
	
	
}
