package com.dacrt.SBIABackend.dto;

import java.math.BigInteger;

public class AppresumeDto {

	private String application;
	private java.math.BigInteger processes;
	private int channels;
	private String type;
	private String realrto;
	private String rto;

	public AppresumeDto() {
		super();
	}

	public AppresumeDto(String application, BigInteger processes, int channels, String type, String realrto,
			String rto) {
		super();
		this.application = application;
		this.processes = processes;
		this.channels = channels;
		this.type = type;
		this.realrto = realrto;
		this.rto = rto;
	}

	public String getApplication() {
		return application;
	}

	public void setApplication(String application) {
		this.application = application;
	}

	public java.math.BigInteger getProcesses() {
		return processes;
	}

	public void setProcesses(java.math.BigInteger processes) {
		this.processes = processes;
	}

	public int getChannels() {
		return channels;
	}

	public void setChannels(int channels) {
		this.channels = channels;
	}

	public String getType() {
		return type;
	}

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

	public String getRealrto() {
		return realrto;
	}

	public void setRealrto(String realrto) {
		this.realrto = realrto;
	}

	public String getRto() {
		return rto;
	}

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

}
