package com.dacrt.SBIABackend.dto;

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

import javax.persistence.Column;
import javax.persistence.Id;
import javax.validation.constraints.NotNull;

import org.springframework.lang.NonNull;

public class CampaingDtoStatus {
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;
	
	@NonNull
	private String datefrom;
	
	@NonNull
	private String dateto;
	
	@NotNull
	private int status;
	
	@NotNull
	private String estatus;
	
	@NotNull
	private String color;
	
	@NotNull
	private Long units;

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

	public CampaingDtoStatus(@NotNull Integer id, @NotNull String name, String datefrom, String dateto, @NotNull int status,
			@NotNull String estatus, @NotNull String color, @NotNull Long units) {
		super();
		this.id = id;
		this.name = name;
		this.datefrom = datefrom;
		this.dateto = dateto;
		this.status = status;
		this.estatus = estatus;
		this.color = color;
		this.units = units;
	}

	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 String getDatefrom() {
		return datefrom;
	}

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

	public String getDateto() {
		return dateto;
	}

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

	public int getStatus() {
		return status;
	}

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

	public String getEstatus() {
		return estatus;
	}

	public void setEstatus(String estatus) {
		this.estatus = estatus;
	}

	public String getColor() {
		return color;
	}

	public void setColor(String color) {
		this.color = color;
	}

	public Long getUnits() {
		return units;
	}

	public void setUnits(Long units) {
		this.units = units;
	}
	
	
}	
