package com.dacrt.SBIABackend.dto.requestDto;

import java.math.BigDecimal;
import java.util.List;

public class ChannelsRequestDto {

	
	private int status;
    private String name;	
    private String dsc;
    private String channeltypepar;
    //private String serviceoffers;
    private List<Integer> serviceoffers;
    private int capacityqty;
    private int customerqty;
    private Integer capacityperiod;
    private BigDecimal amountop;
    private BigDecimal volumeop;
    
	public ChannelsRequestDto(int status, String name, String dsc, String channeltypepar, List<Integer> serviceoffers,
			int capacityqty, int customerqty, Integer capacityperiod, BigDecimal amountop, BigDecimal volumeop) {
		super();
		this.status = status;
		this.name = name;
		this.dsc = dsc;
		this.channeltypepar = channeltypepar;
		this.serviceoffers = serviceoffers;
		this.capacityqty = capacityqty;
		this.customerqty = customerqty;
		this.capacityperiod = capacityperiod;
		this.amountop = amountop;
		this.volumeop = volumeop;
	}

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

	public int getStatus() {
		return status;
	}

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

	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 getChanneltypepar() {
		return channeltypepar;
	}

	public void setChanneltypepar(String channeltypepar) {
		this.channeltypepar = channeltypepar;
	}

	public List<Integer> getServiceoffers() {
		return serviceoffers;
	}

	public void setServiceoffers(List<Integer> serviceoffers) {
		this.serviceoffers = serviceoffers;
	}

	public int getCapacityqty() {
		return capacityqty;
	}

	public void setCapacityqty(int capacityqty) {
		this.capacityqty = capacityqty;
	}

	public int getCustomerqty() {
		return customerqty;
	}

	public void setCustomerqty(int customerqty) {
		this.customerqty = customerqty;
	}

	public Integer getCapacityperiod() {
		return capacityperiod;
	}

	public void setCapacityperiod(Integer capacityperiod) {
		this.capacityperiod = capacityperiod;
	}

	public BigDecimal getAmountop() {
		return amountop;
	}

	public void setAmountop(BigDecimal amountop) {
		this.amountop = amountop;
	}

	public BigDecimal getVolumeop() {
		return volumeop;
	}

	public void setVolumeop(BigDecimal volumeop) {
		this.volumeop = volumeop;
	}        
}
