package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class OperationlineDtoStatus3 {
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;
	
	@NotNull
	private String dsc;
	
	@NotNull
	private int status;
	
	@NotNull
	private String estatus;

	public OperationlineDtoStatus3() {
		super();
	}

	public OperationlineDtoStatus3(@NotNull Integer id, @NotNull String name, @NotNull String dsc, @NotNull int status,
			@NotNull String estatus) {
		super();
		this.id = id;
		this.name = name;
		this.dsc = dsc;
		this.status = status;
		this.estatus = estatus;
	}

	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 getDsc() {
		return dsc;
	}

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

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