package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class CompaniesDto {
	
	@NotNull
	private int id;
	
	@NotNull
	private String name;
	
	@NotNull
	private String dsc;
	
	@NotNull
	private StatusDto2 status;

	public CompaniesDto() {
		super();
	}

	public CompaniesDto(@NotNull int id, @NotNull String name, @NotNull String dsc, @NotNull StatusDto2 status) {
		super();
		this.id = id;
		this.name = name;
		this.dsc = dsc;
		this.status = status;
	}

	public int getId() {
		return id;
	}

	public void setId(int 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 StatusDto2 getStatus() {
		return status;
	}

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