package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class ProcessRankingDto {
	@NotNull
	private Integer id;

	@NotNull
	private String name;
	
	private int rtomin;
	
	@NotNull
	private ProcessTypeDto3 type;
	
	@NotNull
	private OperationlineDto4 operationline;

	public ProcessRankingDto() {
		super();
	}

	public ProcessRankingDto(@NotNull Integer id, @NotNull String name, int rtomin, @NotNull ProcessTypeDto3 type,
			@NotNull OperationlineDto4 operationline) {
		super();
		this.id = id;
		this.name = name;
		this.rtomin = rtomin;
		this.type = type;
		this.operationline = operationline;
	}

	public Integer getId() {
		return id;
	}

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

	public String getName() {
		return name;
	}

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

	public int getRtomin() {
		return rtomin;
	}

	public void setRtomin(int rtomin) {
		this.rtomin = rtomin;
	}

	public ProcessTypeDto3 getType() {
		return type;
	}

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

	public OperationlineDto4 getOperationline() {
		return operationline;
	}

	public void setOperationline(OperationlineDto4 operationline) {
		this.operationline = operationline;
	}
	
}
