package com.dacrt.SBIABackend.dto;

import java.math.BigDecimal;

public class ChannelresumeDto {
	
	private String channel;
	private String type;
	private int processes;
	private BigDecimal weight;
	private String realrto;
    private String rto;
    
	public ChannelresumeDto(String channel, String type, int processes, BigDecimal weight, String realrto, String rto) {
		super();
		this.channel = channel;
		this.type = type;
		this.processes = processes;
		this.weight = weight;
		this.realrto = realrto;
		this.rto = rto;
	}

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

	public String getChannel() {
		return channel;
	}

	public void setChannel(String channel) {
		this.channel = channel;
	}

	public String getType() {
		return type;
	}

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

	public int getProcesses() {
		return processes;
	}

	public void setProcesses(int processes) {
		this.processes = processes;
	}

	public BigDecimal getWeight() {
		return weight;
	}

	public void setWeight(BigDecimal weight) {
		this.weight = weight;
	}

	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;
	}
 
}
