package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class ServiceoffersDto1 {
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;
	
	@NotNull
	private int status;
	
	@NotNull
	private String estatus;
	
	@NotNull
	private String offer_full;
	
	@NotNull
	private String mon;
	
	@NotNull
	private String tue;
	
	@NotNull
	private String wed;
	
	@NotNull
	private String thu;
	
	@NotNull
	private String fri;
	
	@NotNull
	private String sat;
	
	@NotNull
	private String sun;
	
	private String schedule;

	public ServiceoffersDto1() {
		super();
	}

	public ServiceoffersDto1(@NotNull Integer id, @NotNull String name, @NotNull int status, @NotNull String estatus,
			@NotNull String offer_full, @NotNull String mon, @NotNull String tue, @NotNull String wed,
			@NotNull String thu, @NotNull String fri, @NotNull String sat, @NotNull String sun, String schedule) {
		super();
		this.id = id;
		this.name = name;
		this.status = status;
		this.estatus = estatus;
		this.offer_full = offer_full;
		this.mon = mon;
		this.tue = tue;
		this.wed = wed;
		this.thu = thu;
		this.fri = fri;
		this.sat = sat;
		this.sun = sun;
		this.schedule = schedule;
	}

	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 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 getOffer_full() {
		return offer_full;
	}

	public void setOffer_full(String offer_full) {
		this.offer_full = offer_full;
	}

	public String getMon() {
		return mon;
	}

	public void setMon(String mon) {
		this.mon = mon;
	}

	public String getTue() {
		return tue;
	}

	public void setTue(String tue) {
		this.tue = tue;
	}

	public String getWed() {
		return wed;
	}

	public void setWed(String wed) {
		this.wed = wed;
	}

	public String getThu() {
		return thu;
	}

	public void setThu(String thu) {
		this.thu = thu;
	}

	public String getFri() {
		return fri;
	}

	public void setFri(String fri) {
		this.fri = fri;
	}

	public String getSat() {
		return sat;
	}

	public void setSat(String sat) {
		this.sat = sat;
	}

	public String getSun() {
		return sun;
	}

	public void setSun(String sun) {
		this.sun = sun;
	}

	public String getSchedule() {
		return schedule;
	}

	public void setSchedule(String schedule) {
		this.schedule = schedule;
	}

	

}
