package com.dacrt.SBIABackend.dto.requestDto;

import java.util.Date;
import java.util.List;

import javax.validation.constraints.NotNull;

public class CampaingRequestNewDto {
	
	@NotNull
	private Integer status;
	
	@NotNull
	private String name;
	
	@NotNull
	private String dsc;

	@NotNull
	private Date datefrom; 
	
	@NotNull
	private Date dateto;
	  	
	private List<Integer> units;

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

	public CampaingRequestNewDto(@NotNull Integer status, @NotNull String name,String dsc, @NotNull Date datefrom,
			@NotNull Date dateto, List<Integer> units) {
		super();
		this.status = status;
		this.name = name;
		this.dsc = dsc;
		this.datefrom = datefrom;
		this.dateto = dateto;
		this.units = units;
	}

	public Integer getStatus() {
		return status;
	}

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

	public String getName() {
		return name;
	}

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

	public Date getDatefrom() {
		return datefrom;
	}

	public void setDatefrom(Date datefrom) {
		this.datefrom = datefrom;
	}

	public Date getDateto() {
		return dateto;
	}

	public void setDateto(Date dateto) {
		this.dateto = dateto;
	}

	public List<Integer> getUnits() {
		return units;
	}

	public void setUnits(List<Integer> units) {
		this.units = units;
	}

	public String getDsc() {
		return dsc;
	}

	public void setDsc(String dsc) {
		this.dsc = dsc;
	}
	
    
}
